upscheme/c/os_minix.c

17 lines
253 B
C
Raw Normal View History

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
char *get_exename(char *buf, size_t size)
{
(void)buf;
(void)size;
return NULL;
}