add unimpl fallback for getprogname

This commit is contained in:
Brent Cook
2019-02-03 18:50:14 -06:00
parent 7f59976700
commit 40c848316e
3 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#include <stdlib.h>
const char *
getprogname(void)
{
return "?";
}