summaryrefslogtreecommitdiffstats
path: root/src/lid.c
diff options
context:
space:
mode:
authorClaudio Fontana <sick_soul@users.sourceforge.net>2005-12-27 04:24:57 +0000
committerClaudio Fontana <sick_soul@users.sourceforge.net>2005-12-27 04:24:57 +0000
commit50916693c92ce904c5a57e1ab6a5a6982d2d67df (patch)
tree998f3226f26a9ee835cd5a8ea1d4e5f87070449c /src/lid.c
parentf25997f7039e40474694aa53031d20f6209ba3d8 (diff)
downloadidutils-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.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/lid.c b/src/lid.c
index a07173f..8182976 100644
--- a/src/lid.c
+++ b/src/lid.c
@@ -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);