]> git.ipfire.org Git - thirdparty/libbsd.git/commitdiff
Add missing semicolon to bsd_getopt() declaration
authorGuillem Jover <guillem@hadrons.org>
Tue, 5 Jul 2011 18:59:04 +0000 (20:59 +0200)
committerGuillem Jover <guillem@hadrons.org>
Sat, 9 Jul 2011 20:28:00 +0000 (22:28 +0200)
Accidentally lost in commit 4a6303ba3b64504ab0077b9cfebd2a4b918d531d.

include/bsd/unistd.h

index edb0ec59a593d0ade3120f1bec0f1955dbff46f0..b6f070a3db980dd26022efad8ae026b853b3a0f1 100644 (file)
@@ -49,7 +49,7 @@ extern int optreset;
 #define getopt(argc, argv, optstr) bsd_getopt(argc, argv, optstr)
 #endif
 
-int bsd_getopt(int argc, char * const argv[], const char *shortopts)
+int bsd_getopt(int argc, char * const argv[], const char *shortopts);
 
 mode_t getmode(const void *set, mode_t mode);
 void *setmode(const char *mode_str);