diff options
author | Brent Cook <busterb@gmail.com> | 2019-02-03 18:50:14 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2019-02-03 18:50:14 -0600 |
commit | 40c848316e6f457eb1b799ff0c680ae42a30f80b (patch) | |
tree | b4ebaa45e63be61b3d0857a050f0dff9d5939d24 /crypto/compat | |
parent | 7f59976700f6ded62b271c1d39b59bd27c000644 (diff) | |
download | portable-40c848316e6f457eb1b799ff0c680ae42a30f80b.tar.gz portable-40c848316e6f457eb1b799ff0c680ae42a30f80b.tar.bz2 portable-40c848316e6f457eb1b799ff0c680ae42a30f80b.zip |
add unimpl fallback for getprogname
Diffstat (limited to 'crypto/compat')
-rw-r--r-- | crypto/compat/getprogname_unimpl.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crypto/compat/getprogname_unimpl.c b/crypto/compat/getprogname_unimpl.c new file mode 100644 index 0000000..339c54a --- /dev/null +++ b/crypto/compat/getprogname_unimpl.c | |||
@@ -0,0 +1,7 @@ | |||
1 | #include <stdlib.h> | ||
2 | |||
3 | const char * | ||
4 | getprogname(void) | ||
5 | { | ||
6 | return "?"; | ||
7 | } | ||