Selaa lähdekoodia

stdinc: modify default alloca prototype

For compatibilty with TinyCC.
Anonymous Maarten 2 vuotta sitten
vanhempi
commit
06758685a5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      include/SDL3/SDL_stdinc.h

+ 1 - 1
include/SDL3/SDL_stdinc.h

@@ -66,7 +66,7 @@
 #  elif defined(__MRC__)
 void *alloca(unsigned);
 #  else
-char *alloca();
+void *alloca(size_t);
 #  endif
 # endif
 #endif