summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2011-07-05 20:59:04 +0200
committerGuillem Jover <guillem@hadrons.org>2011-07-09 22:28:00 +0200
commit059f89ca95991d5570980846020385f8947be60e (patch)
treea305932b1646538be6626475354547b219137ed2
parent4a6303ba3b64504ab0077b9cfebd2a4b918d531d (diff)
downloadlibbsd-059f89ca95991d5570980846020385f8947be60e.tar.gz
Add missing semicolon to bsd_getopt() declaration
Accidentally lost in commit 4a6303ba3b64504ab0077b9cfebd2a4b918d531d.
-rw-r--r--include/bsd/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bsd/unistd.h b/include/bsd/unistd.h
index edb0ec5..b6f070a 100644
--- a/include/bsd/unistd.h
+++ b/include/bsd/unistd.h
@@ -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);