Browse code

Ensure NAME_MAX isn't redefined on BeOS

git-svn: trunk@1746

Nigel Horne authored on 2005/11/06 23:03:26
Showing 1 changed files
... ...
@@ -17,6 +17,9 @@
17 17
  *
18 18
  * Change History:
19 19
  * $Log: binhex.c,v $
20
+ * Revision 1.17  2005/11/06 14:03:26  nigelhorne
21
+ * Ensure NAME_MAX isn't redefined on BeOS
22
+ *
20 23
  * Revision 1.16  2005/05/14 16:13:25  nigelhorne
21 24
  * Ensure munmap is the right size
22 25
  *
... ...
@@ -63,7 +66,7 @@
63 63
  * First draft of binhex.c
64 64
  *
65 65
  */
66
-static	char	const	rcsid[] = "$Id: binhex.c,v 1.16 2005/05/14 16:13:25 nigelhorne Exp $";
66
+static	char	const	rcsid[] = "$Id: binhex.c,v 1.17 2005/11/06 14:03:26 nigelhorne Exp $";
67 67
 
68 68
 #include "clamav.h"
69 69
 
... ...
@@ -92,13 +95,13 @@ static	char	const	rcsid[] = "$Id: binhex.c,v 1.16 2005/05/14 16:13:25 nigelhorne
92 92
 #include <stdio.h>
93 93
 #include <memory.h>
94 94
 #include <sys/stat.h>
95
+#include "others.h"
95 96
 #include "line.h"
96 97
 #include "mbox.h"
97 98
 #include "table.h"
98 99
 #include "blob.h"
99 100
 #include "text.h"
100 101
 #include "binhex.h"
101
-#include "others.h"
102 102
 
103 103
 int
104 104
 cli_binhex(const char *dir, int desc)