diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-18 17:32:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-18 17:32:06 +0000 |
commit | e6502418f71f98344bccae45cc3caccf2a541877 (patch) | |
tree | 6b497eab3b0b54fef63b1c49201699996d23e5b4 /gnu/lib/libreadline/rlstdc.h | |
parent | b0177a8199cab79579d60a0bd6a796be6b825bd1 (diff) |
GNU readline-4.1
Diffstat (limited to 'gnu/lib/libreadline/rlstdc.h')
-rw-r--r-- | gnu/lib/libreadline/rlstdc.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/lib/libreadline/rlstdc.h b/gnu/lib/libreadline/rlstdc.h new file mode 100644 index 00000000000..dac8e986e10 --- /dev/null +++ b/gnu/lib/libreadline/rlstdc.h @@ -0,0 +1,39 @@ +/* stdc.h -- macros to make source compile on both ANSI C and K&R C + compilers. */ + +/* Copyright (C) 1993 Free Software Foundation, Inc. + + This file is part of GNU Bash, the Bourne Again SHell. + + Bash is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + Bash is distributed in the hope that it will be useful, but WITHOUT + ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public + License for more details. + + You should have received a copy of the GNU General Public License + along with Bash; see the file COPYING. If not, write to the Free + Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */ + +#if !defined (_RL_STDC_H_) +#define _RL_STDC_H_ + +/* Adapted from BSD /usr/include/sys/cdefs.h. */ + +/* A function can be defined using prototypes and compile on both ANSI C + and traditional C compilers with something like this: + extern char *func __P((char *, char *, int)); */ + +#if !defined (__P) +# if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus) +# define __P(protos) protos +# else +# define __P(protos) () +# endif +#endif + +#endif /* !_RL_STDC_H_ */ |