changeset 2941:59bbdf423db8

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Fri, 21 May 1993 23:39:17 +0000
parents 3c7c3bd60e4f
children 9ac629dc3a4b
files src/alloca.c src/s/sco4.h
diffstat 2 files changed, 1 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/src/alloca.c	Fri May 21 22:52:55 1993 +0000
+++ b/src/alloca.c	Fri May 21 23:39:17 1993 +0000
@@ -42,10 +42,6 @@
 #endif /* static */
 #endif /* emacs */
 
-#ifdef emacs
-#define free xfree
-#endif
-
 /* If your stack is a linked list of frames, you have to
    provide an "address metric" ADDRESS_FUNCTION macro.  */
 
@@ -64,8 +60,6 @@
 
 #define	NULL	0
 
-extern pointer xmalloc ();
-
 /* Define STACK_DIRECTION if you know the direction of stack
    growth for your system; otherwise it will be automatically
    deduced at run-time.
@@ -181,7 +175,7 @@
   /* Allocate combined header + user data storage.  */
 
   {
-    register pointer new = xmalloc (sizeof (header) + size);
+    register pointer new = malloc (sizeof (header) + size);
     /* Address of header.  */
 
     ((header *) new)->h.next = last_alloca_header;
--- a/src/s/sco4.h	Fri May 21 22:52:55 1993 +0000
+++ b/src/s/sco4.h	Fri May 21 23:39:17 1993 +0000
@@ -46,9 +46,6 @@
 /* SCO has bcopy, et. al.  */
 #define BSTRING
 
-/* Use both <time.h> and <sys/time.h>.  */
-#define TIME_WITH_SYS_TIME
-
 /* Sockets are an option on SCO.  If we have X, we have them.  */
 #ifdef HAVE_X_WINDOWS
 #define HAVE_SOCKETS