]> git.eshelyaron.com Git - emacs.git/commitdiff
(NULL): Define, if not defined.
authorRichard M. Stallman <rms@gnu.org>
Wed, 20 Aug 1997 16:31:20 +0000 (16:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 20 Aug 1997 16:31:20 +0000 (16:31 +0000)
src/editfns.c

index c12ea5ac3bbaa44303fde76cfb622f9d72a25216..8e53fc55ba8173b33a24836079c27df350db453f 100644 (file)
@@ -40,6 +40,10 @@ Boston, MA 02111-1307, USA.  */
 #define min(a, b) ((a) < (b) ? (a) : (b))
 #define max(a, b) ((a) > (b) ? (a) : (b))
 
+#ifndef NULL
+#define NULL 0
+#endif
+
 extern char **environ;
 extern Lisp_Object make_time ();
 extern void insert_from_buffer ();