remove stdout/stderr calls
[compress.git] / code.h
diff --git a/code.h b/code.h
index 5ffcf48ddb18da9ee3b7bb9ef6ebd96766316cd9..684745bde13928e300572a57cc1154fc14ba2f08 100644 (file)
--- a/code.h
+++ b/code.h
@@ -13,11 +13,11 @@ 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__ */
 
-// vim: ts=4 sw=4 et
+/* vim: set ts=4 sw=4 et */