summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bsd_getopt.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bsd_getopt.c b/src/bsd_getopt.c
index b5bd270..fdcfd71 100644
--- a/src/bsd_getopt.c
+++ b/src/bsd_getopt.c
@@ -36,9 +36,5 @@ bsd_getopt(int argc, char * const argv[], const char *shortopts)
optind = 0;
}
- /*
- * Make sure we are using the system getopt() and not a possible
- * overlay macro.
- */
- return (getopt)(argc, argv, shortopts);
+ return getopt(argc, argv, shortopts);
}