commit 7ef32a98cdf74157ae734a7a833af5171585db0c Author: Jeff Law Date: Fri Dec 29 21:23:26 2023 -0700 Fix another missing header file for mcore libgloss I guess I must have missed this when working through the trivial port specific changes. This adds an include of stdlib.h to get a prototype for exit(). Pushed to the trunk. diff --git a/libgloss/mcore/sbrk.c b/libgloss/mcore/sbrk.c index 1eb8047fc..c6860194c 100644 --- a/libgloss/mcore/sbrk.c +++ b/libgloss/mcore/sbrk.c @@ -14,6 +14,7 @@ */ #include #include +#include #include "glue.h" extern int _write (int, char *, int);