summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/fid.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 17105ee..e9dfb99 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -19,6 +19,9 @@
* src/mkid.c: add include directive for dirname.h
* src/lid.c: likewise
+ * src/*.c, libidu/*.c: enforce <> for system includes or their gnulib
+ replacements, and "" for program specific headers
+
2005-12-15 Claudio Fontana <claudio@gnu.org>
* src/mkid.c: tweak alloc-ed size of token signature to a minimum
of 1 byte. Fixes assertion failure filed as savannah support request
diff --git a/src/fid.c b/src/fid.c
index b047233..ae17ef6 100644
--- a/src/fid.c
+++ b/src/fid.c
@@ -23,10 +23,10 @@
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
+#include <alloca.h>
#include <error.h>
#include <pathmax.h>
#include <xalloc.h>
-#include <alloca.h>
#include "xnls.h"
#include "idfile.h"