aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-03-13 16:39:22 +0000
committerJim Blandy1992-03-13 16:39:22 +0000
commit5399ec5de263f2f4779d8bed509978728daad0b5 (patch)
tree23f29c668b7c21ddce9391e3fbfeafc30b60619b /src
parentde3e8b15bc98c88e2ef48891bb13bb0c623e7bf4 (diff)
downloademacs-5399ec5de263f2f4779d8bed509978728daad0b5.tar.gz
emacs-5399ec5de263f2f4779d8bed509978728daad0b5.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/mem-limits.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mem-limits.h b/src/mem-limits.h
index 39200f99501..fe310542f2c 100644
--- a/src/mem-limits.h
+++ b/src/mem-limits.h
@@ -1,5 +1,5 @@
1/* Includes for memory limit warnings. 1/* Includes for memory limit warnings.
2 Copyright (C) 1990 Free Software Foundation, Inc. 2 Copyright (C) 1990, 1992 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
5 5
@@ -26,6 +26,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
26#include <sys/resource.h> 26#include <sys/resource.h>
27#endif /* BSD4_2 */ 27#endif /* BSD4_2 */
28 28
29/* The important properties of this type are that 1) it's a pointer, and
30 2) arithmetic on it should work as if the size of the object pointed
31 to has a size of 1. */
29#ifdef __STDC__ 32#ifdef __STDC__
30typedef void *POINTER; 33typedef void *POINTER;
31#else 34#else