Ticket #31312: nil-is-keyword.diff

File nil-is-keyword.diff, 556 bytes (added by gjasny@…, 12 years ago)
  • C/gprof.c

    old new  
    123123#include <ucontext.h>
    124124#endif
    125125
     126#ifdef nil
     127#undef nil
     128#endif
     129
    126130static Int ProfCalls, ProfGCs, ProfHGrows, ProfSGrows, ProfMallocs, ProfOn, ProfOns;
    127131
    128132#define TIMER_DEFAULT 100
  • C/heapgc.c

    old new  
    5858
    5959#include "heapgc.h"
    6060
     61#ifdef nil
     62#undef nil
     63#endif
     64
    6165typedef struct gc_mark_continuation {
    6266  CELL *v;
    6367  int nof;