summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGulliver <gulliver@fargonauten.de>2014-09-11 20:31:59 +0200
committerGulliver <gulliver@fargonauten.de>2014-09-11 20:31:59 +0200
commit3e16b871d17f812be1226c23fffbbecbe52876b0 (patch)
treed158fb580d710baa7e8e2a61e74298843471a5a0
parentd8f7c132779f62837c5dc36a0e9f327c8c3f90a3 (diff)
using only includes from system
-rw-r--r--src/getopt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/getopt.c b/src/getopt.c
index 321dd9f..c0aa182 100644
--- a/src/getopt.c
+++ b/src/getopt.c
@@ -30,9 +30,10 @@
*/
#include <config.h>
-#include <portable/system.h>
-#include <portable/getopt.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
/*
* If we're running the test suite, rename getopt and the global variables to
* avoid conflicts with the system version.