diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2005-12-27 04:24:57 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2005-12-27 04:24:57 +0000 |
commit | 50916693c92ce904c5a57e1ab6a5a6982d2d67df (patch) | |
tree | 998f3226f26a9ee835cd5a8ea1d4e5f87070449c /src/lid.c | |
parent | f25997f7039e40474694aa53031d20f6209ba3d8 (diff) | |
download | idutils-50916693c92ce904c5a57e1ab6a5a6982d2d67df.tar.gz idutils-50916693c92ce904c5a57e1ab6a5a6982d2d67df.tar.bz2 idutils-50916693c92ce904c5a57e1ab6a5a6982d2d67df.zip |
* started to address portability problems in the id-utils-4.0 release
Diffstat (limited to 'src/lid.c')
-rw-r--r-- | src/lid.c | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -25,21 +25,22 @@ #include <sys/types.h> #include <sys/wait.h> #include <assert.h> -#include "getopt.h" +#include <getopt.h> #include <limits.h> #include <string.h> +#include <dirname.h> #include <unistd.h> #include <termios.h> -#include "regex.h" +#include <alloca.h> +#include <regex.h> +#include <xalloc.h> +#include <pathmax.h> +#include <error.h> + #include "xnls.h" -#include "xalloc.h" #include "idfile.h" -#include "error.h" -#include "pathmax.h" -#include "alloca.h" #include "iduglobal.h" - typedef void (*report_func_t) (char const *name, struct file_link **flinkv); typedef int (*query_func_t) (char const *arg, report_func_t); |