shithub: femtolisp

ref: 518cfe8d0c1a6eb4f90cdb68861fe0cd3a2e0d74
dir: /macos/platform.h/

View raw version
#pragma once

#define _XOPEN_SOURCE 700
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
#include <float.h>
#include <inttypes.h>
#include <limits.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <stdbool.h>
#include <stdarg.h>
#include <stdio.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>
#include <wctype.h>
#include <wchar.h>

#define __os_name__ "macos"
extern char os_version[];
#define __os_version__ os_version

#define nil NULL
#define USED(x) ((void)(x))
#define nelem(x) (int)(sizeof(x)/sizeof((x)[0]))

#define PATHSEP '/'
#define PATHSEPSTRING "/"
#define PATHLISTSEP ':'
#define PATHLISTSEPSTRING ":"
#define ISPATHSEP(c) ((c) == '/')

#ifndef BYTE_ORDER
#error unknown byte order
#endif

#if !defined(INITIAL_HEAP_SIZE)
#define INITIAL_HEAP_SIZE 128*1024
#endif
#if !defined(ALLOC_LIMIT_TRIGGER)
#define ALLOC_LIMIT_TRIGGER INITIAL_HEAP_SIZE
#endif

#include "cc.h"
#include "mem.h"
#include "mp.h"
#include "utf.h"