260d332664
Remove fuzz from patches. Remove PATCH_FUZZ_FACTOR definition.
33 lines
901 B
Text
33 lines
901 B
Text
$NetBSD: patch-ae,v 1.3 1999/11/22 11:11:33 agc Exp $
|
|
|
|
--- include/rle_config.tlr Mon Nov 22 11:01:35 1999
|
|
+++ include/rle_config.tlr Mon Nov 22 11:01:48 1999
|
|
@@ -48,7 +48,7 @@
|
|
#endif /* NO_DECLARE_MALLOC */
|
|
|
|
#ifdef USE_PROTOTYPES
|
|
-extern char *getenv( CONST_DECL char *name );
|
|
+extern char *getenv( CONST_DECL char *CONST_DECL name);
|
|
#else
|
|
extern char *getenv();
|
|
#endif
|
|
@@ -58,15 +58,15 @@
|
|
#ifdef USE_STRING_H
|
|
/* SYS V string routines. */
|
|
# include <string.h>
|
|
-# define index strchr
|
|
-# define rindex strrchr
|
|
+# define rle_index strchr
|
|
+# define rle_rindex strrchr
|
|
#else
|
|
/* BSD string routines. */
|
|
# include <strings.h>
|
|
/* Really, should define USE_STRING_H if __STDC__, but be safe. */
|
|
#ifdef __STDC__
|
|
-# define index strchr
|
|
-# define rindex strrchr
|
|
+# define rle_index strchr
|
|
+# define rle_rindex strrchr
|
|
#endif /* __STDC__ */
|
|
#endif /* USE_STRING_H */
|
|
|