Add stubs for Haiku, Minix and Solaris

This commit is contained in:
Lassi Kortela 2019-08-13 23:58:14 +03:00
parent d69ad59126
commit bf11066313
3 changed files with 30 additions and 0 deletions

10
c/fs_haiku.c Normal file
View File

@ -0,0 +1,10 @@
#include <unistd.h>
#include "fs.h"
char *get_exename(char *buf, size_t size)
{
(void)buf;
(void)size;
return NULL;
}

10
c/fs_minix.c Normal file
View File

@ -0,0 +1,10 @@
#include <unistd.h>
#include "fs.h"
char *get_exename(char *buf, size_t size)
{
(void)buf;
(void)size;
return NULL;
}

10
c/fs_sunos.c Normal file
View File

@ -0,0 +1,10 @@
#include <unistd.h>
#include "fs.h"
char *get_exename(char *buf, size_t size)
{
(void)buf;
(void)size;
return NULL;
}