comparison src/s/darwin.h @ 46856:eba75fedd593

2002-08-10 Andrew Choi <akochoi@shaw.ca> * mac.c (sys_select) [MAC_OSX]: New function. * macterm.c (MakeMeTheFrontProcess): New function. (mac_initialize): Call MakeMeTheFrontProcess. * s/darwin.h: Define select to sys_select.
author Andrew Choi <akochoi@shaw.ca>
date Sun, 11 Aug 2002 00:26:24 +0000
parents 16b6134d7193
children 56242900e171
comparison
equal deleted inserted replaced
46855:f3a9fdb839d2 46856:eba75fedd593
306 #ifdef temacs 306 #ifdef temacs
307 #define malloc unexec_malloc 307 #define malloc unexec_malloc
308 #define realloc unexec_realloc 308 #define realloc unexec_realloc
309 #define free unexec_free 309 #define free unexec_free
310 #endif 310 #endif
311
312 /* Reroute calls to SELECT to the version defined in mac.c to fix the
313 problem of Emacs requiring an extra return to be typed to start
314 working when started from the command line. */
315 #if defined (emacs) || defined (temacs)
316 #define select sys_select
317 #endif