Files
pkgsrc-ng/misc/fep/patches/patch-al
2013-09-26 17:14:40 +02:00

46 lines
834 B
Plaintext

$NetBSD: patch-al,v 1.7 2012/03/05 12:16:00 obache Exp $
--- fep_util.c.orig 1988-12-28 07:24:01.000000000 -0500
+++ fep_util.c 2005-12-10 16:59:27.000000000 -0500
@@ -6,11 +6,11 @@
-#endif lint
+#endif /* lint */
#ifndef MKARGDEBUG
#include <stdio.h>
#include <pwd.h>
#include <sys/types.h>
-#include <sys/dir.h>
+#include <dirent.h>
#include <ctype.h>
#include "fep_defs.h"
@@ -178,9 +178,9 @@ max (d1, d2)
{
return (d1 > d2 ? d1 : d2);
}
-#endif max
+#endif /* max */
-#else MKARGDEBUG
+#else /* MKARGDEBUG */
#include <stdio.h>
#include <ctype.h>
@@ -198,7 +198,7 @@ main()
showArgs (s);
}
}
-#endif MKARGDEBUG
+#endif /* MKARGDEBUG */
showArgs (comline)
char *comline;
@@ -402,4 +402,4 @@ iskanji_in_string (s, i)
else
return (iskanji (*cp));
}
-#endif KANJI
+#endif /* KANJI */