Fixed uname declaration

This commit is contained in:
Kat R. 2022-10-09 11:47:52 -05:00
parent 859245ac6f
commit 9c8ba82546
1 changed files with 1 additions and 1 deletions

View File

@ -20,6 +20,6 @@ struct utsname {
char machine[70];
};
int uname(utsname *);
int uname(struct utsname *);
#endif