stddef.h - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       stddef.h (192B)
       ---
            1 #ifndef _STDDEF_H
            2 #define _STDDEF_H
            3 
            4 #ifndef NULL
            5 #define NULL ((void *)0)
            6 #endif
            7 
            8 typedef unsigned long        size_t;
            9 typedef long                ptrdiff_t;
           10 
           11 typedef unsigned short        wchar_t;
           12 
           13 #endif        // _STDDEF_H