Blame view

build3/liba/include/stddef.h 182 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
  #ifndef LIBA_STDDEF_H
  #define LIBA_STDDEF_H
  
  #define NULL 0
  
  typedef int ssize_t;
  typedef unsigned int size_t;
  
  #define offsetof(type, field) __builtin_offsetof(type, field)
  
  #endif