OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-7.1/] [readline/] [rlstdc.h] - Diff between revs 834 and 842

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 834 Rev 842
/* stdc.h -- macros to make source compile on both ANSI C and K&R C
/* stdc.h -- macros to make source compile on both ANSI C and K&R C
   compilers. */
   compilers. */
 
 
/* Copyright (C) 1993 Free Software Foundation, Inc.
/* Copyright (C) 1993 Free Software Foundation, Inc.
 
 
   This file is part of GNU Bash, the Bourne Again SHell.
   This file is part of GNU Bash, the Bourne Again SHell.
 
 
   Bash is free software; you can redistribute it and/or modify it
   Bash is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by
   under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   the Free Software Foundation; either version 2, or (at your option)
   any later version.
   any later version.
 
 
   Bash is distributed in the hope that it will be useful, but WITHOUT
   Bash is distributed in the hope that it will be useful, but WITHOUT
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
   License for more details.
   License for more details.
 
 
   You should have received a copy of the GNU General Public License
   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
   along with Bash; see the file COPYING.  If not, write to the Free
   Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
   Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
 
 
#if !defined (_RL_STDC_H_)
#if !defined (_RL_STDC_H_)
#define _RL_STDC_H_
#define _RL_STDC_H_
 
 
/* Adapted from BSD /usr/include/sys/cdefs.h. */
/* Adapted from BSD /usr/include/sys/cdefs.h. */
 
 
/* A function can be defined using prototypes and compile on both ANSI C
/* A function can be defined using prototypes and compile on both ANSI C
   and traditional C compilers with something like this:
   and traditional C compilers with something like this:
        extern char *func PARAMS((char *, char *, int)); */
        extern char *func PARAMS((char *, char *, int)); */
 
 
#if !defined (PARAMS)
#if !defined (PARAMS)
#  if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus)
#  if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus)
#    define PARAMS(protos) protos
#    define PARAMS(protos) protos
#  else
#  else
#    define PARAMS(protos) ()
#    define PARAMS(protos) ()
#  endif
#  endif
#endif
#endif
 
 
#ifndef __attribute__
#ifndef __attribute__
#  if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
#  if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
#    define __attribute__(x)
#    define __attribute__(x)
#  endif
#  endif
#endif
#endif
 
 
#endif /* !_RL_STDC_H_ */
#endif /* !_RL_STDC_H_ */
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.