upscheme/c/os_minix.c

25 lines
359 B
C
Raw Normal View History

2019-10-13 20:05:01 -04:00
#include <errno.h>
2019-08-27 04:13:50 -04:00
#include <math.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <string.h>
2019-08-13 16:58:14 -04:00
#include <unistd.h>
#include "scheme.h"
2019-08-13 16:58:14 -04:00
2019-10-13 20:05:01 -04:00
pid_t getpgid(pid_t pid)
{
(void)pid;
errno = ENOSYS;
return (pid_t)-1;
}
2019-08-13 16:58:14 -04:00
char *get_exename(char *buf, size_t size)
{
(void)buf;
(void)size;
return NULL;
}