Stub builtin_environment_stack for Windows

This commit is contained in:
Lassi Kortela 2019-08-21 22:15:19 +03:00
parent 0d95c386ac
commit 5caf337589
1 changed files with 41 additions and 0 deletions

View File

@ -1 +1,42 @@
#include <sys/types.h>
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <limits.h>
#include <math.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "dtypes.h"
#include "utils.h"
#include "utf8.h"
#include "ios.h"
#include "socket.h"
#include "timefuncs.h"
#include "hashing.h"
#include "htable.h"
#include "htableh_inc.h"
#include "bitvector.h"
#include "os.h"
#include "random.h"
#include "llt.h"
#include "flisp.h"
#include "error.h"
#include "argcount.h"
const char *env_get_os_name(void) { return "windows"; } const char *env_get_os_name(void) { return "windows"; }
value_t builtin_environment_stack(value_t *args, uint32_t nargs)
{
(void)args;
argcount("environment-stack", nargs, 0);
return FL_NIL;
}