Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
02a76f8a
Commit
02a76f8a
authored
May 21, 1993
by
Jim Blandy
Browse files
*** empty log message ***
parent
b49ef455
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
10 deletions
+1
-10
src/alloca.c
src/alloca.c
+1
-7
src/s/sco4.h
src/s/sco4.h
+0
-3
No files found.
src/alloca.c
View file @
02a76f8a
...
...
@@ -42,10 +42,6 @@ lose
#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 @@ typedef char *pointer;
#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 @@ alloca (size)
/* Allocate combined header + user data storage. */
{
register
pointer
new
=
x
malloc
(
sizeof
(
header
)
+
size
);
register
pointer
new
=
malloc
(
sizeof
(
header
)
+
size
);
/* Address of header. */
((
header
*
)
new
)
->
h
.
next
=
last_alloca_header
;
...
...
src/s/sco4.h
View file @
02a76f8a
...
...
@@ -46,9 +46,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment