summaryrefslogtreecommitdiff
path: root/include/alpha
diff options
context:
space:
mode:
Diffstat (limited to 'include/alpha')
-rwxr-xr-xinclude/alpha/osf/assert.h14
-rwxr-xr-xinclude/alpha/osf/ctype.h25
-rwxr-xr-xinclude/alpha/osf/errno.h8
-rwxr-xr-xinclude/alpha/osf/float.h37
-rwxr-xr-xinclude/alpha/osf/limits.h30
-rwxr-xr-xinclude/alpha/osf/locale.h38
-rwxr-xr-xinclude/alpha/osf/math.h29
-rwxr-xr-xinclude/alpha/osf/setjmp.h11
-rwxr-xr-xinclude/alpha/osf/signal.h20
-rwxr-xr-xinclude/alpha/osf/stdarg.h30
-rwxr-xr-xinclude/alpha/osf/stddef.h35
-rwxr-xr-xinclude/alpha/osf/stdio.h112
-rwxr-xr-xinclude/alpha/osf/stdlib.h66
-rwxr-xr-xinclude/alpha/osf/string.h38
-rwxr-xr-xinclude/alpha/osf/time.h53
15 files changed, 0 insertions, 546 deletions
diff --git a/include/alpha/osf/assert.h b/include/alpha/osf/assert.h
deleted file mode 100755
index ee0b0bf..0000000
--- a/include/alpha/osf/assert.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef __ASSERT
-#define __ASSERT
-
-void assert(int);
-
-#endif /* __ASSERT */
-
-#undef assert
-#ifdef NDEBUG
-#define assert(ignore) ((void)0)
-#else
-extern void __assert(char *, char *, unsigned);
-#define assert(e) ((void)((e)||(__assert(#e, __FILE__, __LINE__),0)))
-#endif /* NDEBUG */
diff --git a/include/alpha/osf/ctype.h b/include/alpha/osf/ctype.h
deleted file mode 100755
index 02e0131..0000000
--- a/include/alpha/osf/ctype.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef __CTYPE
-#define __CTYPE
-
-extern int isalnum(int);
-extern int isalpha(int);
-extern int iscntrl(int);
-extern int isdigit(int);
-extern int isgraph(int);
-extern int islower(int);
-extern int isprint(int);
-extern int ispunct(int);
-extern int isspace(int);
-extern int isupper(int);
-extern int isxdigit(int);
-extern int tolower(int);
-extern int toupper(int);
-
-#define __U 01
-#define __L 02
-#define __N 04
-#define __S 010
-#define __P 020
-#define __C 040
-
-#endif /* __CTYPE */
diff --git a/include/alpha/osf/errno.h b/include/alpha/osf/errno.h
deleted file mode 100755
index c914e05..0000000
--- a/include/alpha/osf/errno.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#ifndef __ERRNO
-#define __ERRNO
-
-#define EDOM 33
-#define ERANGE 34
-extern int errno;
-
-#endif /* __ERRNO */
diff --git a/include/alpha/osf/float.h b/include/alpha/osf/float.h
deleted file mode 100755
index a3e1eb5..0000000
--- a/include/alpha/osf/float.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef __FLOAT
-#define __FLOAT
-
-#define FLT_ROUNDS 1
-#define FLT_RADIX 2
-
-#define FLT_DIG 6
-#define FLT_EPSILON 1.19209289550781250000e-07
-#define FLT_MANT_DIG 24
-#define FLT_MAX 3.40282346638528860000e+38
-#define FLT_MAX_10_EXP 38
-#define FLT_MAX_EXP 128
-#define FLT_MIN 1.17549435082228750000e-38
-#define FLT_MIN_10_EXP -37
-#define FLT_MIN_EXP -125
-
-#define DBL_DIG 15
-#define DBL_EPSILON 2.22044604925031310000e-16
-#define DBL_MANT_DIG 53
-#define DBL_MAX 1.79769313486231570000e+308
-#define DBL_MAX_10_EXP 308
-#define DBL_MAX_EXP 1024
-#define DBL_MIN 2.22507385850720140000e-308
-#define DBL_MIN_10_EXP -307
-#define DBL_MIN_EXP -1021
-
-#define LDBL_MANT_DIG DBL_MANT_DIG
-#define LDBL_EPSILON DBL_EPSILON
-#define LDBL_DIG DBL_DIG
-#define LDBL_MIN_EXP DBL_MIN_EXP
-#define LDBL_MIN DBL_MIN
-#define LDBL_MIN_10_EXP DBL_MIN_10_EXP
-#define LDBL_MAX_EXP DBL_MAX_EXP
-#define LDBL_MAX DBL_MAX
-#define LDBL_MAX_10_EXP DBL_MAX_10_EXP
-
-#endif /* __FLOAT */
diff --git a/include/alpha/osf/limits.h b/include/alpha/osf/limits.h
deleted file mode 100755
index a898558..0000000
--- a/include/alpha/osf/limits.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __LIMITS
-#define __LIMITS
-
-#define CHAR_BIT 8
-#define MB_LEN_MAX 1
-
-#define UCHAR_MAX 0xff
-#define USHRT_MAX 0xffff
-#define UINT_MAX (~0U)
-#define ULONG_MAX (~0UL)
-
-#define SCHAR_MAX 0x7f
-#define SHRT_MAX 0x7fff
-#define INT_MAX 0x7fffffff
-#define LONG_MAX 0x7fffffffffffffffL
-
-#define SCHAR_MIN (-SCHAR_MAX-1)
-#define SHRT_MIN (-SHRT_MAX-1)
-#define INT_MIN (-INT_MAX-1)
-#define LONG_MIN (-LONG_MAX-1)
-
-#ifdef __CHAR_UNSIGNED__
-#define CHAR_MAX UCHAR_MAX
-#define CHAR_MIN 0
-#else
-#define CHAR_MAX SCHAR_MAX
-#define CHAR_MIN SCHAR_MIN
-#endif
-
-#endif /* __LIMITS */
diff --git a/include/alpha/osf/locale.h b/include/alpha/osf/locale.h
deleted file mode 100755
index 8a96636..0000000
--- a/include/alpha/osf/locale.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef __LOCALE
-#define __LOCALE
-
-#define LC_ALL 0
-#define LC_COLLATE 1
-#define LC_CTYPE 2
-#define LC_MONETARY 3
-#define LC_NUMERIC 4
-#define LC_TIME 5
-#ifndef NULL
-#define NULL ((void*)0)
-#endif
-
-struct lconv {
- char *decimal_point;
- char *thousands_sep;
- char *grouping;
- char *int_curr_symbol;
- char *currency_symbol;
- char *mon_decimal_point;
- char *mon_thousands_sep;
- char *mon_grouping;
- char *positive_sign;
- char *negative_sign;
- char int_frac_digits;
- char frac_digits;
- char p_cs_precedes;
- char p_sep_by_space;
- char n_cs_precedes;
- char n_sep_by_space;
- char p_sign_posn;
- char n_sign_posn;
-};
-
-char *setlocale(int, const char *);
-struct lconv *localeconv(void);
-
-#endif /* __LOCALE */
diff --git a/include/alpha/osf/math.h b/include/alpha/osf/math.h
deleted file mode 100755
index d2a31f4..0000000
--- a/include/alpha/osf/math.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef __MATH
-#define __MATH
-
-#define HUGE_VAL 1.79769313486231570000e+308
-
-extern double acos(double);
-extern double asin(double);
-extern double atan(double);
-extern double atan2(double, double);
-extern double cos(double);
-extern double sin(double);
-extern double tan(double);
-extern double cosh(double);
-extern double sinh(double);
-extern double tanh(double);
-extern double exp(double);
-extern double frexp(double, int *);
-extern double ldexp(double, int);
-extern double log(double);
-extern double log10(double);
-extern double modf(double, double *);
-extern double pow(double, double);
-extern double sqrt(double);
-extern double ceil(double);
-extern double fabs(double);
-extern double floor(double);
-extern double fmod(double, double);
-
-#endif /* __MATH */
diff --git a/include/alpha/osf/setjmp.h b/include/alpha/osf/setjmp.h
deleted file mode 100755
index 62dcb2e..0000000
--- a/include/alpha/osf/setjmp.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef __SETJMP
-#define __SETJMP
-
-
-
-
-typedef int jmp_buf[35+1+48];
-int setjmp(jmp_buf);
-void longjmp(jmp_buf, int);
-
-#endif /* __SETJMP */
diff --git a/include/alpha/osf/signal.h b/include/alpha/osf/signal.h
deleted file mode 100755
index c208a6b..0000000
--- a/include/alpha/osf/signal.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef __SIGNAL
-#define __SIGNAL
-
-typedef int sig_atomic_t;
-
-#define SIG_DFL ((void (*)(int))0)
-#define SIG_ERR ((void (*)(int))-1)
-#define SIG_IGN ((void (*)(int))1)
-
-#define SIGABRT 6
-#define SIGFPE 8
-#define SIGILL 4
-#define SIGINT 2
-#define SIGSEGV 11
-#define SIGTERM 15
-
-void (*signal(int, void (*)(int)))(int);
-int raise(int);
-
-#endif /* __SIGNAL */
diff --git a/include/alpha/osf/stdarg.h b/include/alpha/osf/stdarg.h
deleted file mode 100755
index 8f98329..0000000
--- a/include/alpha/osf/stdarg.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef __STDARG
-#define __STDARG
-
-#if !defined(_VA_LIST) && !defined(__VA_LIST_DEFINED)
-#define _VA_LIST
-#define _VA_LIST_DEFINED
-typedef struct {
- char *_a0; /* pointer to first homed integer arg */
- int _offset; /* byte offset of next param */
- float _tmp;
-} __va_list;
-#endif
-static float __va_arg_tmp;
-typedef __va_list va_list;
-
-#define va_start(list, start) ((void)( \
- (list)._a0 = (__typecode(__firstarg)==1 ? \
- (char*)&__firstarg+48 : (char *)&__firstarg), \
- (list)._offset = (__typecode(start)==1 ? \
- (char*)&start+56 : (char *)&start+8)-(list)._a0))
-#define va_arg(list, mode) (*(mode *)( \
- (list)._offset += (int)((sizeof(mode)+7)&~7), \
- (__typecode(mode)==1 && sizeof(mode)==4) ? \
- ((list)._tmp = (float)*(double *)((list)._a0 + (list)._offset - \
- ((list)._offset <= 48 ? 56 : 8))), (char *)&(list)._tmp : \
- (__typecode(mode)==1 && (list)._offset <= 48) ? \
- (list)._a0 + (list)._offset - 56 : \
- (list)._a0 + (list)._offset - (int)((sizeof(mode)+7)&~7)))
-#define va_end(list) ((void)0)
-#endif
diff --git a/include/alpha/osf/stddef.h b/include/alpha/osf/stddef.h
deleted file mode 100755
index ed4bc34..0000000
--- a/include/alpha/osf/stddef.h
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef __STDDEF
-#define __STDDEF
-
-/* $Id: stddef.h 315 2002-08-28 23:57:16Z drh $ */
-
-#ifndef NULL
-#define NULL ((void*)0)
-#endif
-#define offsetof(ty,mem) ((size_t)((char*)&((ty*)0)->mem - (char*)0))
-
-typedef long ptrdiff_t;
-
-#if !defined(_SIZE_T) && !defined(_SIZE_T_) && !defined(_SIZE_T_DEFINED)
-#define _SIZE_T
-#define _SIZE_T_
-#define _SIZE_T_DEFINED
-typedef unsigned long size_t;
-#endif
-
-#if !defined(_WCHAR_T) && !defined(_WCHAR_T_) && !defined(_WCHAR_T_DEFINED)
-#define _WCHAR_T
-#define _WCHAR_T_
-#define _WCHAR_T_DEFINED
-#if (_WCHAR_T_SIZE + 0) == 1
-typedef unsigned char wchar_t;
-#elif (_WCHAR_T_SIZE + 0) == 2
-typedef unsigned short wchar_t;
-#elif (_WCHAR_T_SIZE + 0) == 4
-typedef unsigned int wchar_t;
-#else
-typedef unsigned short wchar_t;
-#endif
-#endif
-
-#endif /* __STDDEF */
diff --git a/include/alpha/osf/stdio.h b/include/alpha/osf/stdio.h
deleted file mode 100755
index c5725a8..0000000
--- a/include/alpha/osf/stdio.h
+++ /dev/null
@@ -1,112 +0,0 @@
-#ifndef __STDIO
-#define __STDIO
-
-#define _IOFBF 0
-#define _IOLBF 0200
-#define _IONBF 04
-#define BUFSIZ 8192
-#define EOF (-1)
-
-typedef struct _iobuf {
- int _cnt;
- unsigned char *_ptr;
- unsigned char *_base;
- int _bufsiz;
- short _flag;
- short _file;
- char *__newbase;
- void *_lock;
- unsigned char *_bufendp;
-} FILE;
-extern FILE _iob[];
-#define FILENAME_MAX 255
-#define FOPEN_MAX 64
-
-#if !defined(_FPOS_T) && !defined(_FPOS_T_) && !defined(_FPOS_T_DEFINED)
-#define _FPOS_T
-#define _FPOS_T_
-#define _FPOS_T_DEFINED
-typedef long fpos_t;
-#endif
-
-#define L_tmpnam 21
-#ifndef NULL
-#define NULL ((void*)0)
-#endif
-#define SEEK_CUR 1
-#define SEEK_END 2
-#define SEEK_SET 0
-
-#if !defined(_SIZE_T) && !defined(_SIZE_T_) && !defined(_SIZE_T_DEFINED)
-#define _SIZE_T
-#define _SIZE_T_
-#define _SIZE_T_DEFINED
-typedef unsigned long size_t;
-#endif
-
-#if !defined(_VA_LIST) && !defined(_VA_LIST_DEFINED)
-#define _VA_LIST
-#define _VA_LIST_DEFINED
-typedef struct {
- char *_a0; /* pointer to first homed integer arg */
- int _offset; /* byte offset of next param */
- float _tmp;
-} __va_list;
-#endif
-
-#define stderr (&_iob[2])
-#define stdin (&_iob[0])
-#define stdout (&_iob[1])
-#define TMP_MAX 16384
-
-extern int remove(const char *);
-extern int rename(const char *, const char *);
-extern FILE *tmpfile(void);
-extern char *tmpnam(char *);
-extern int fclose(FILE *);
-extern int fflush(FILE *);
-extern FILE *fopen(const char *, const char *);
-extern FILE *freopen(const char *, const char *, FILE *);
-extern void setbuf(FILE *, char *);
-extern int setvbuf(FILE *, char *, int, size_t);
-extern int fprintf(FILE *, const char *, ...);
-extern int fscanf(FILE *, const char *, ...);
-extern int printf(const char *, ...);
-extern int scanf(const char *, ...);
-extern int sprintf(char *, const char *, ...);
-extern int sscanf(const char *, const char *, ...);
-extern int vfprintf(FILE *, const char *, __va_list);
-extern int vprintf(const char *, __va_list);
-extern int vsprintf(char *, const char *, __va_list);
-extern int fgetc(FILE *);
-extern char *fgets(char *, int, FILE *);
-extern int fputc(int, FILE *);
-extern int fputs(const char *, FILE *);
-extern int getc(FILE *);
-extern int getchar(void);
-extern char *gets(char *);
-extern int putc(int, FILE *);
-extern int putchar(int);
-extern int puts(const char *);
-extern int ungetc(int, FILE *);
-extern size_t fread(void *, size_t, size_t, FILE *);
-extern size_t fwrite(const void *, size_t, size_t, FILE *);
-extern int fgetpos(FILE *, fpos_t *);
-extern int fseek(FILE *, long int, int);
-extern int fsetpos(FILE *, const fpos_t *);
-extern long int ftell(FILE *);
-extern void rewind(FILE *);
-extern void clearerr(FILE *);
-extern int feof(FILE *);
-extern int ferror(FILE *);
-extern void perror(const char *);
-
-#define _IOEOF 020
-#define _IOERR 040
-
-#define getc(p) (--(p)->_cnt < 0 ? _filbuf(p) : (int) *(p)->_ptr++)
-#define putc(x, p) (--(p)->_cnt < 0 ? \
- _flsbuf((unsigned char) (x), p) : \
- (int) (*(p)->_ptr++ = (unsigned char) (x)))
-extern int _filbuf(FILE *), _flsbuf(unsigned, FILE *);
-#endif /* __STDIO */
diff --git a/include/alpha/osf/stdlib.h b/include/alpha/osf/stdlib.h
deleted file mode 100755
index e8ce3f4..0000000
--- a/include/alpha/osf/stdlib.h
+++ /dev/null
@@ -1,66 +0,0 @@
-#ifndef __STDLIB
-#define __STDLIB
-
-#define EXIT_FAILURE 1
-#define EXIT_SUCCESS 0
-#define MB_CUR_MAX 1
-#ifndef NULL
-#define NULL ((void*)0)
-#endif
-#define RAND_MAX 32767
-
-typedef struct { int quot, rem; } div_t;
-typedef struct { long quot, rem; } ldiv_t;
-
-#if !defined(_SIZE_T) && !defined(_SIZE_T_) && !defined(_SIZE_T_DEFINED)
-#define _SIZE_T
-#define _SIZE_T_
-#define _SIZE_T_DEFINED
-typedef unsigned long size_t;
-#endif
-
-#if !defined(_WCHAR_T) && !defined(_WCHAR_T_) && !defined(_WCHAR_T_DEFINED)
-#define _WCHAR_T
-#define _WCHAR_T_
-#define _WCHAR_T_DEFINED
-#if (_WCHAR_T_SIZE + 0) == 1
-typedef unsigned char wchar_t;
-#elif (_WCHAR_T_SIZE + 0) == 2
-typedef unsigned short wchar_t;
-#elif (_WCHAR_T_SIZE + 0) == 4
-typedef unsigned int wchar_t;
-#else
-typedef unsigned short wchar_t;
-#endif
-#endif
-
-extern double atof(const char *);
-extern int atoi(const char *);
-extern long int atol(const char *);
-extern double strtod(const char *, char **);
-extern long int strtol(const char *, char **, int);
-extern unsigned long int strtoul(const char *, char **, int);
-extern int rand(void);
-extern void srand(unsigned int);
-extern void *calloc(size_t, size_t);
-extern void free(void *);
-extern void *malloc(size_t);
-extern void *realloc(void *, size_t);
-extern void abort(void);
-extern int atexit(void (*)(void));
-extern void exit(int);
-extern char *getenv(const char *);
-extern int system(const char *);
-extern void *bsearch(const void *, const void *, size_t, size_t, int (*)(const void *, const void *));
-extern void qsort(void *, size_t, size_t, int (*)(const void *, const void *));
-extern int abs(int);
-extern div_t div(int, int);
-extern long int labs(long int);
-extern ldiv_t ldiv(long int, long int);
-extern int mblen(const char *, size_t);
-extern int mbtowc(wchar_t *, const char *, size_t);
-extern int wctomb(char *, wchar_t);
-extern size_t mbstowcs(wchar_t *, const char *, size_t);
-extern size_t wcstombs(char *, const wchar_t *, size_t);
-
-#endif /* __STDLIB */
diff --git a/include/alpha/osf/string.h b/include/alpha/osf/string.h
deleted file mode 100755
index c6ae2d3..0000000
--- a/include/alpha/osf/string.h
+++ /dev/null
@@ -1,38 +0,0 @@
-#ifndef __STRING
-#define __STRING
-
-#ifndef NULL
-#define NULL ((void*)0)
-#endif
-
-#if !defined(_SIZE_T) && !defined(_SIZE_T_) && !defined(_SIZE_T_DEFINED)
-#define _SIZE_T
-#define _SIZE_T_
-#define _SIZE_T_DEFINED
-typedef unsigned long size_t;
-#endif
-
-void *memcpy(void *, const void *, size_t);
-void *memmove(void *, const void *, size_t);
-char *strcpy(char *, const char *);
-char *strncpy(char *, const char *, size_t);
-char *strcat(char *, const char *);
-char *strncat(char *, const char *, size_t);
-int memcmp(const void *, const void *, size_t);
-int strcmp(const char *, const char *);
-int strcoll(const char *, const char *);
-int strncmp(const char *, const char *, size_t);
-size_t strxfrm(char *, const char *, size_t);
-void *memchr(const void *, int, size_t);
-char *strchr(const char *, int);
-size_t strcspn(const char *, const char *);
-char *strpbrk(const char *, const char *);
-char *strrchr(const char *, int);
-size_t strspn(const char *, const char *);
-char *strstr(const char *, const char *);
-char *strtok(char *, const char *);
-void *memset(void *, int, size_t);
-char *strerror(int);
-size_t strlen(const char *);
-
-#endif /* __STRING */
diff --git a/include/alpha/osf/time.h b/include/alpha/osf/time.h
deleted file mode 100755
index f9636b5..0000000
--- a/include/alpha/osf/time.h
+++ /dev/null
@@ -1,53 +0,0 @@
-#ifndef __TIME
-#define __TIME
-
-#define CLOCKS_PER_SEC 1000000
-#ifndef NULL
-#define NULL ((void*)0)
-#endif
-
-#if !defined(_CLOCK_T) && !defined(_CLOCK_T_) && !defined(_CLOCK_T_DEFINED)
-#define _CLOCK_T
-#define _CLOCK_T_
-#define _CLOCK_T_DEFINED
-typedef long clock_t;
-#endif
-
-#if !defined(_TIME_T) && !defined(_TIME_T_) && !defined(_TIME_T_DEFINED)
-#define _TIME_T
-#define _TIME_T_
-#define _TIME_T_DEFINED
-typedef long time_t;
-#endif
-
-#if !defined(_SIZE_T) && !defined(_SIZE_T_) && !defined(_SIZE_T_DEFINED)
-#define _SIZE_T
-#define _SIZE_T_
-#define _SIZE_T_DEFINED
-typedef unsigned long size_t;
-#endif
-
-struct tm {
- int tm_sec;
- int tm_min;
- int tm_hour;
- int tm_mday;
- int tm_mon;
- int tm_year;
- int tm_wday;
- int tm_yday;
- int tm_isdst;
-long __tm_gmtoff;
- char *__tm_zone;
-};
-extern clock_t clock(void);
-extern double difftime(time_t, time_t);
-extern time_t mktime(struct tm *);
-extern time_t time(time_t *);
-extern char *asctime(const struct tm *);
-extern char *ctime(const time_t *);
-extern struct tm *gmtime(const time_t *);
-extern struct tm *localtime(const time_t *);
-extern size_t strftime(char *, size_t, const char *, const struct tm *);
-
-#endif /* __TIME */