~pac72/ubuntu/lucid/ddd/devel

« back to all changes in this revision

Viewing changes to libiberty/alloca-conf.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Schepler
  • Date: 2004-07-22 03:49:37 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20040722034937-cysl08t1jvba4jrx
Tags: 1:3.3.9-3
USERINFO has been renamed to USERINFO.txt; adjust debian/rules code
to match, to get correct information on the About DDD dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include "config.h"
2
 
 
3
 
#if defined(__GNUC__) && !defined(C_ALLOCA)
4
 
# ifndef alloca
5
 
#  define alloca __builtin_alloca
6
 
# endif
7
 
#else /* ! defined (__GNUC__) */
8
 
#  ifdef _AIX
9
 
 #pragma alloca
10
 
#  else
11
 
#  if defined(HAVE_ALLOCA_H) && !defined(C_ALLOCA)
12
 
#   include <alloca.h>
13
 
#  else /* ! defined (HAVE_ALLOCA_H) */
14
 
#   ifdef __STDC__
15
 
extern PTR alloca (size_t);
16
 
#   else /* ! defined (__STDC__) */
17
 
extern PTR alloca ();
18
 
#   endif /* ! defined (__STDC__) */
19
 
#  endif /* ! defined (HAVE_ALLOCA_H) */
20
 
#  ifdef _WIN32
21
 
#   include <malloc.h>
22
 
#  endif
23
 
# endif /* ! defined (_AIX) */
24
 
#endif /* ! defined (__GNUC__) */