diff options
author | obrien <obrien@FreeBSD.org> | 2000-04-19 15:15:44 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2000-04-19 15:15:44 +0000 |
commit | 9b9890351af921db6081322c7eca6aec88cf4714 (patch) | |
tree | 9b95ac196a5cad4ebd407d3dd77cde061970b3c2 /bin/csh | |
parent | 9f147019b852d104589c619e66e04e04418c62f1 (diff) | |
download | FreeBSD-src-9b9890351af921db6081322c7eca6aec88cf4714.zip FreeBSD-src-9b9890351af921db6081322c7eca6aec88cf4714.tar.gz |
Use our system malloc().
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/config.h | 4 | ||||
-rw-r--r-- | bin/csh/config_p.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/csh/config.h b/bin/csh/config.h index 57dd362..c134764 100644 --- a/bin/csh/config.h +++ b/bin/csh/config.h @@ -120,11 +120,15 @@ /****************** local defines *********************/ /****************** configurable hacks ****************/ +#include <stdlib.h> + /* have been moved to config_f.h */ #include "config_f.h" #if defined(__FreeBSD__) #define NLS_BUGS +/* we want to use the system malloc when we install as /bin/csh */ +#define SYSMALLOC #endif #if defined(__bsdi__) diff --git a/bin/csh/config_p.h b/bin/csh/config_p.h index 57dd362..c134764 100644 --- a/bin/csh/config_p.h +++ b/bin/csh/config_p.h @@ -120,11 +120,15 @@ /****************** local defines *********************/ /****************** configurable hacks ****************/ +#include <stdlib.h> + /* have been moved to config_f.h */ #include "config_f.h" #if defined(__FreeBSD__) #define NLS_BUGS +/* we want to use the system malloc when we install as /bin/csh */ +#define SYSMALLOC #endif #if defined(__bsdi__) |