diff options
author | Jim Meyering <jim@meyering.net> | 1999-05-23 19:43:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-05-23 19:43:10 +0000 |
commit | 00fbb65ec19816d19aa1c23ef447cf783cfe44ea (patch) | |
tree | 2809b85fe565992adf30e63572061afb6b05d6ef /lib | |
parent | 0e96b5d2e7a7c9f1ce774618cc37417ee56861a0 (diff) | |
download | coreutils-00fbb65ec19816d19aa1c23ef447cf783cfe44ea.tar.xz |
*** empty log message ***
Diffstat (limited to 'lib')
-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_ */ |