diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 01:07:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-22 01:07:44 +0000 |
commit | 04b163798f550730faed41fa2cbe949cb00c07a2 (patch) | |
tree | 0ef58f3a1f66904d13e1d168fa57048e01b80072 /libc/unistd/getopt.c | |
parent | 63b94a1fdf758f61a98cbadbc3621ec1fdc9b0ab (diff) |
fix "make utils" build failure in ldconfig
(undefined reference to 'getopt')
Diffstat (limited to 'libc/unistd/getopt.c')
-rw-r--r-- | libc/unistd/getopt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/unistd/getopt.c b/libc/unistd/getopt.c index 1721a2ae7..d2020fe03 100644 --- a/libc/unistd/getopt.c +++ b/libc/unistd/getopt.c @@ -1180,6 +1180,7 @@ getopt (int argc, char *const *argv, const char *optstring) (int *) 0, 0); } +libc_hidden_def(getopt) int getopt_long (int argc, char *const *argv, const char *options, |