Blame view

build6/epsilon-master/liba/include/bridge/alloca.h 141 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
  #ifndef LIBA_BRIDGE_ALLOCA_H
  #define LIBA_BRIDGE_ALLOCA_H
  
  #if __MINGW32__
  #include <malloc.h>
  #else
  #include_next <alloca.h>
  #endif
  
  #endif