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.
This commit is contained in:
Jeff Law 2023-12-29 21:23:26 -07:00
parent a84860f488
commit 7ef32a98cd
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <stdlib.h>
#include "glue.h"
extern int _write (int, char *, int);