~ubuntu-branches/ubuntu/trusty/bash/trusty-security

« back to all changes in this revision

Viewing changes to include/stdc.h

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2014-03-03 22:52:05 UTC
  • mfrom: (1.3.5) (2.2.6 experimental)
  • Revision ID: package-import@ubuntu.com-20140303225205-87ltrt5kspeq0g1b
Tags: 4.3-1ubuntu1
* Merge with Debian; remaining changes:
  - skel.bashrc:
    - Run lesspipe.
    - Enable ls aliases.
    - Set options in ll alias to -alF.
    - Define an alert alias.
    - Enabled colored grep aliases.
  - etc.bash.bashrc:
    - Add sudo hint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* stdc.h -- macros to make source compile on both ANSI C and K&R C
 
2
   compilers. */
 
3
 
 
4
/* Copyright (C) 1993 Free Software Foundation, Inc.
 
5
 
 
6
   This file is part of GNU Bash, the Bourne Again SHell.
 
7
 
 
8
   Bash is free software: you can redistribute it and/or modify
 
9
   it under the terms of the GNU General Public License as published by
 
10
   the Free Software Foundation, either version 3 of the License, or
 
11
   (at your option) any later version.
 
12
 
 
13
   Bash is distributed in the hope that it will be useful,
 
14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
   GNU General Public License for more details.
 
17
 
 
18
   You should have received a copy of the GNU General Public License
 
19
   along with Bash.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
 
 
22
#if !defined (_STDC_H_)
 
23
#define _STDC_H_
 
24
 
 
25
/* Adapted from BSD /usr/include/sys/cdefs.h. */
 
26
 
 
27
/* A function can be defined using prototypes and compile on both ANSI C
 
28
   and traditional C compilers with something like this:
 
29
        extern char *func __P((char *, char *, int)); */
 
30
 
 
31
#if !defined (__P)
 
32
#  if defined (__STDC__) || defined (__GNUC__) || defined (__cplusplus) || defined (PROTOTYPES)
 
33
#    define __P(protos) protos
 
34
#  else 
 
35
#    define __P(protos) ()
 
36
#  endif
 
37
#endif
 
38
 
 
39
/* Fortify, at least, has trouble with this definition */
 
40
#if defined (HAVE_STRINGIZE)
 
41
#  define CPP_STRING(x) #x
 
42
#else
 
43
#  define CPP_STRING(x) "x"
 
44
#endif
 
45
 
 
46
#if !defined (__STDC__)
 
47
 
 
48
#if defined (__GNUC__)          /* gcc with -traditional */
 
49
#  if !defined (signed)
 
50
#    define signed __signed
 
51
#  endif
 
52
#  if !defined (volatile)
 
53
#    define volatile __volatile
 
54
#  endif
 
55
#else /* !__GNUC__ */
 
56
#  if !defined (inline)
 
57
#    define inline
 
58
#  endif
 
59
#  if !defined (signed)
 
60
#    define signed
 
61
#  endif
 
62
#  if !defined (volatile)
 
63
#    define volatile
 
64
#  endif
 
65
#endif /* !__GNUC__ */
 
66
 
 
67
#endif /* !__STDC__ */
 
68
 
 
69
#ifndef __attribute__
 
70
#  if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8)
 
71
#    define __attribute__(x)
 
72
#  endif
 
73
#endif
 
74
 
 
75
/* For those situations when gcc handles inlining a particular function but
 
76
   other compilers complain. */
 
77
#ifdef __GNUC__
 
78
#  define INLINE inline
 
79
#else
 
80
#  define INLINE
 
81
#endif
 
82
 
 
83
#if defined (PREFER_STDARG)
 
84
#  define SH_VA_START(va, arg)  va_start(va, arg)
 
85
#else
 
86
#  define SH_VA_START(va, arg)  va_start(va)
 
87
#endif
 
88
 
 
89
#endif /* !_STDC_H_ */