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:
parent
ac9f031061
commit
a03eaf1c04
@ -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 ();
|
||||
|
Loading…
Reference in New Issue
Block a user