mescc: Support gcc-2.95: Add getpwnam stub.

* lib/gcc.c (getpwnam): New stub.
This commit is contained in:
Jan Nieuwenhuizen 2018-06-07 18:04:17 +02:00
parent a70bc92857
commit b7d913d7a0
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 8 additions and 0 deletions

View File

@ -105,3 +105,11 @@ alarm (unsigned int seconds)
#endif
}
// gcc-2.95.3
struct passwd *
getpwnam (const char *NAME)
{
eputs ("getpwnam stub\n");
return 0;
}