1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-06 11:55:48 +00:00

(NULL): Define, if not defined.

This commit is contained in:
Richard M. Stallman 1997-08-20 16:31:20 +00:00
parent ac9f031061
commit a03eaf1c04

View 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 ();