remove stdout/stderr calls
[compress.git] / code.h
diff --git a/code.h b/code.h
index ce9820b246ea7d2af8104a7f977eba16f2f4b8fd..684745bde13928e300572a57cc1154fc14ba2f08 100644 (file)
--- a/code.h
+++ b/code.h
@@ -1,8 +1,6 @@
 #ifndef __CODE_H__
 #define __CODE_H__
 
-#include <stddef.h>
-
 #define NB_BYTES 256
 
 /* byte type */
@@ -15,9 +13,9 @@ typedef struct {
     char code[NB_BYTES - 1 + 1];
 } code_t;
 
-int codcat (char *dst, size_t n, char *src);
+int codcat (char *dst, int n, char *src);
 int codcmp (char *cod1, char *cod2);
-int codcpy (char *dst, size_t n, char *src);
+int codcpy (char *dst, int n, char *src);
 int codlen (char *code);
 
 #endif /* __CODE_H__ */