diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2010-07-07 21:55:07 -0700 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2010-07-07 21:55:07 -0700 |
commit | 295d0d8f2008cbd2deb200fc6ecb30d19847f725 (patch) | |
tree | b5ce54b485bc65a9e4ae0529353da47fed956ebc /src/tparam.c | |
parent | 49d9e6b07bc34acf755ded0fc255e974a37f9189 (diff) | |
download | emacs-295d0d8f2008cbd2deb200fc6ecb30d19847f725.tar.gz emacs-295d0d8f2008cbd2deb200fc6ecb30d19847f725.tar.bz2 emacs-295d0d8f2008cbd2deb200fc6ecb30d19847f725.zip |
Clean up include guards.
* src/tparam.c: Remove include guards for config.h, string.h and code
that assumes #ifndef emacs.
* src/termcap.c:
* src/unexalpha.c:
* src/sysdep.c:
* src/filemode.c:
* src/filelock.c:
* src/bidi.c: Likewise.
Diffstat (limited to 'src/tparam.c')
-rw-r--r-- | src/tparam.c | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/src/tparam.c b/src/tparam.c index c768581aeb5..d8a8f0260f0 100644 --- a/src/tparam.c +++ b/src/tparam.c @@ -18,61 +18,14 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Emacs config.h may rename various library functions such as malloc. */ -#ifdef HAVE_CONFIG_H #include <config.h> -#endif - -#ifdef emacs #include <setjmp.h> #include "lisp.h" /* for xmalloc */ -#else - -#ifdef STDC_HEADERS -#include <stdlib.h> -#include <string.h> -#else -char *malloc (); -char *realloc (); -#endif - -#endif /* not emacs */ #ifndef NULL #define NULL (char *) 0 #endif -#ifndef emacs -static void -memory_out () -{ - write (2, "virtual memory exhausted\n", 25); - exit (1); -} - -static char * -xmalloc (size) - unsigned size; -{ - register char *tem = malloc (size); - - if (!tem) - memory_out (); - return tem; -} - -static char * -xrealloc (ptr, size) - char *ptr; - unsigned size; -{ - register char *tem = realloc (ptr, size); - - if (!tem) - memory_out (); - return tem; -} -#endif /* not emacs */ - /* Assuming STRING is the value of a termcap string entry containing `%' constructs to expand parameters, merge in parameter values and store result in block OUTSTRING points to. |