#include <sys/types.h>
#include <string.h>
-#ifdef __linux__
+#ifdef __linux__
/*
* Appends src to string dst of size siz (unlike strncat, siz is the
return(dlen + (s - src)); /* count does not include NUL */
}
-
/*
* Copy src to string dst of size siz. At most siz-1 characters
* will be copied. Always NUL terminates (unless siz == 0).
return(s - src - 1); /* count does not include NUL */
}
-#endif /*__linux__*/
+
+#endif