diff options
author | Gulliver <gulliver@fargonauten.de> | 2014-09-11 20:31:59 +0200 |
---|---|---|
committer | Gulliver <gulliver@fargonauten.de> | 2014-09-11 20:31:59 +0200 |
commit | 3e16b871d17f812be1226c23fffbbecbe52876b0 (patch) | |
tree | d158fb580d710baa7e8e2a61e74298843471a5a0 /src | |
parent | d8f7c132779f62837c5dc36a0e9f327c8c3f90a3 (diff) |
using only includes from system
Diffstat (limited to 'src')
-rw-r--r-- | src/getopt.c | 5 |
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. |