Start file system support for NetBSD

This commit is contained in:
Lassi Kortela 2019-08-13 15:53:37 +03:00
parent 9b737144ea
commit 10eb936836
1 changed files with 13 additions and 0 deletions

13
c/fs_netbsd.c Normal file
View File

@ -0,0 +1,13 @@
#include <sys/types.h>
#include <sys/sysctl.h>
#include "fs.h"
char *get_exename(char *buf, size_t size)
{
int mib[4] = { CTL_KERN, KERN_PROC_ARGS, -1, KERN_PROC_PATHNAME };
sysctl(mib, 4, buf, &size, 0, 0);
return buf;
}