stdinc: modify default alloca prototype

For compatibilty with TinyCC.
This commit is contained in:
Anonymous Maarten 2024-04-10 10:03:46 +02:00 committed by GitHub
parent 132cef91c8
commit 06758685a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

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