diff options
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,9 +25,9 @@ #ifndef _LIBUTIL_H #define _LIBUTIL_H -size_t strlcpy(char *d, const char *s, size_t bufsize); -size_t strlcat(char *d, const char *s, size_t bufsize); +extern size_t strlcpy(char *d, const char *s, size_t bufsize); +extern size_t strlcat(char *d, const char *s, size_t bufsize); -char *getusername(uid_t uid); +extern char *getusername(uid_t uid); #endif /* _LIBUTIL_H */ |