]> diplodocus.org Git - nmh/blobdiff - sbr/ctype-checked.c
crawl_folders.h: Base header on implementation.
[nmh] / sbr / ctype-checked.c
index 880f1f07ccac44baa5ed880f29c9abf2efc7b70b..651d06cf30d3e62546f86b9d517f63b8e5c18fce 100644 (file)
@@ -1,4 +1,4 @@
-/* sbr/ctype-checked.c:  checks char isn't used as the value for each of
+/* ctype-checked.c -- checks char isn't used as the value for each of
  *     the ctype functions
  *
  * This code is Copyright (c) 2016, by the authors of nmh.
@@ -6,7 +6,7 @@
  * distribution for complete copyright information.
  */
 
-#include <config.h>
+#include "config.h"
 
 #ifndef NDEBUG
 
@@ -15,7 +15,7 @@
 #error "Please report this to nmh's authors."
 #endif
 
-#include <sbr/ctype-checked.h>
+#include "ctype-checked.h"
 
 /* ctype_identity returns its index less one allowing [EOF, 255] to be
  * used as indexes to ctype_identity + 1. */
@@ -44,6 +44,6 @@ int ctype_identity[257] = {
 
 /* Need to put a symbol in the .c file with NDEBUG so the compilation
  * unit isn't empty. */
-void ctype_checked();
+void ctype_checked(void);
 
 #endif