Add missing semicolon to bsd_getopt() declaration

Accidentally lost in commit 4a6303ba3b.
This commit is contained in:
Guillem Jover 2011-07-05 20:59:04 +02:00
parent 4a6303ba3b
commit 059f89ca95

View 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);