]> mj.ucw.cz Git - libucw.git/blobdiff - lib/wordsplit.c
Removed partial support for LFS on Linuxes with pre-2.1 glibc.
[libucw.git] / lib / wordsplit.c
index eea9476230166816e39b152ec79d8925df7593d7..b07b4309c231b4df5ede157493e58cb9020d27ee 100644 (file)
@@ -1,18 +1,16 @@
 /*
  *     Sherlock Library -- Word Splitting
  *
- *     (c) 1997 Martin Mares, <mj@atrey.karlin.mff.cuni.cz>
+ *     (c) 1997 Martin Mares <mj@ucw.cz>
  */
 
-#include <stdio.h>
-
-#include "lib.h"
-#include "string.h"
+#include "lib/lib.h"
+#include "lib/chartype.h"
 
 int
 wordsplit(byte *src, byte **dst, uns max)
 {
-  int cnt = 0;
+  uns cnt = 0;
 
   for(;;)
     {