source: webkit/trunk/JavaScriptCore/JavaScriptCorePrefix.h@ 5266

Last change on this file since 5266 was 5266, checked in by darin, 22 years ago
  • JavaScriptCorePrefix.h: Added a C case to the NULL definition since we use C as well as C++ in this project.
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 447 bytes
Line 
1#ifdef __cplusplus
2#define NULL __null
3#else
4#define NULL ((void *)0)
5#endif
6
7#include <config.h>
8
9#include <assert.h>
10#include <ctype.h>
11#include <float.h>
12#include <locale.h>
13#include <math.h>
14#include <stdio.h>
15#include <stdlib.h>
16#include <string.h>
17#include <strings.h>
18#include <time.h>
19#include <sys/param.h>
20#include <sys/time.h>
21#include <sys/timeb.h>
22#include <sys/types.h>
23
24#ifdef __cplusplus
25#include <list>
26#include <typeinfo>
27#endif
Note: See TracBrowser for help on using the repository browser.