diff options
-rw-r--r-- | lib/same.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/same.h b/lib/same.h new file mode 100644 index 000000000..2f1d44d4d --- /dev/null +++ b/lib/same.h @@ -0,0 +1,19 @@ +#ifndef SAME_H_ +# define SAME_H_ 1 + +# if HAVE_CONFIG_H +# include <config.h> +# endif + +# ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +# endif + +int +same_name PARAMS ((const char *source, const char *dest)); + +#endif /* SAME_H_ */ |