stdinc: modify default alloca prototype

For compatibilty with TinyCC.

Backport of 06758685a5
This commit is contained in:
Anonymous Maarten 2024-04-10 10:05:08 +02:00
parent 1fa6142903
commit 9216b7a5ee
1 changed files with 1 additions and 1 deletions

View File

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