diff options
| author | Paul Eggert | 2012-07-04 01:35:34 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-07-04 01:35:34 -0700 |
| commit | 013aabf1249f5b96b4a848738d5faab38a287fc6 (patch) | |
| tree | c8fa057904602a28cd0f02283de0fdb4a3d5700a | |
| parent | c7f2cd7fd629e6af07eaa2354eda1b7bc81b22aa (diff) | |
| download | emacs-013aabf1249f5b96b4a848738d5faab38a287fc6.tar.gz emacs-013aabf1249f5b96b4a848738d5faab38a287fc6.zip | |
Merge from gnulib.
* lib/alloca.in.h: New version from gnulib, incorporating:
2012-07-03 alloca: add support for HP NonStop TNS/E native
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | lib/alloca.in.h | 7 |
2 files changed, 13 insertions, 0 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-07-04 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Merge from gnulib. | ||
| 4 | * lib/alloca.in.h: New version from gnulib, incorporating: | ||
| 5 | 2012-07-03 alloca: add support for HP NonStop TNS/E native | ||
| 6 | |||
| 1 | 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru> | 7 | 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 8 | ||
| 3 | * configure.in: If --enable-gcc-warnings, disable | 9 | * configure.in: If --enable-gcc-warnings, disable |
diff --git a/lib/alloca.in.h b/lib/alloca.in.h index e94eb68c3c8..d20f4b8f1c3 100644 --- a/lib/alloca.in.h +++ b/lib/alloca.in.h | |||
| @@ -44,6 +44,13 @@ | |||
| 44 | # define alloca _alloca | 44 | # define alloca _alloca |
| 45 | # elif defined __DECC && defined __VMS | 45 | # elif defined __DECC && defined __VMS |
| 46 | # define alloca __ALLOCA | 46 | # define alloca __ALLOCA |
| 47 | # elif defined __TANDEM && defined _TNS_E_TARGET | ||
| 48 | # ifdef __cplusplus | ||
| 49 | extern "C" | ||
| 50 | # endif | ||
| 51 | void *_alloca (unsigned short); | ||
| 52 | # pragma intrinsic (_alloca) | ||
| 53 | # define alloca _alloca | ||
| 47 | # else | 54 | # else |
| 48 | # include <stddef.h> | 55 | # include <stddef.h> |
| 49 | # ifdef __cplusplus | 56 | # ifdef __cplusplus |