aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lock.c3
-rw-r--r--src/meta.c1
2 files changed, 1 insertions, 3 deletions
diff --git a/src/lock.c b/src/lock.c
index bc8505c..24d0205 100644
--- a/src/lock.c
+++ b/src/lock.c
@@ -15,7 +15,6 @@
with wydawca. If not, see <http://www.gnu.org/licenses/>. */
#include "wydawca.h"
-#include "c-ctype.h"
#include "xgethostname.h"
int enable_locking = 1;
@@ -227,7 +226,7 @@ fix_tagname (const char *tag)
char *p;
for (p = tagname; *p; p++)
- if (!c_isalnum (*p) && *p != '_' && *p != '-')
+ if (!isalnum (*p) && *p != '_' && *p != '-')
*p = '_';
return tagname;
}
diff --git a/src/meta.c b/src/meta.c
index 545ac36..30d3041 100644
--- a/src/meta.c
+++ b/src/meta.c
@@ -16,7 +16,6 @@
#include "wydawca.h"
#include "sql.h"
-#include <c-ctype.h>
static const char *
meta_expand (struct metadef *def, void *data)

Return to:

Send suggestions and report system problems to the System administrator.