Make this work in the libstand environment; don't use stdio/stdlib headers.
This commit is contained in:
parent
c7db92c026
commit
cbb5c0dd58
@ -1,11 +1,11 @@
|
||||
# $Id$
|
||||
# $Id: Makefile,v 1.1 1998/11/03 06:11:34 msmith Exp $
|
||||
#
|
||||
LIB= ficl
|
||||
NOPROFILE= yes
|
||||
INTERNALLIB= yes
|
||||
INTERNALSTATICLIB= yes
|
||||
|
||||
SRCS= dict.c ficl.c math64.c softcore.c stack.c sysdep.c vm.c words.c
|
||||
SRCS= dict.c ficl.c math64.c softcore.c stack.c sysdep.c \
|
||||
vm.c words.c
|
||||
CLEANFILES= softcore.c
|
||||
|
||||
# Standard softwords
|
||||
|
@ -5,15 +5,11 @@
|
||||
** Created: 16 Oct 1997
|
||||
** Implementations of FICL external interface functions...
|
||||
**
|
||||
** (simple) port to Linux, Skip Carter 26 March 1998
|
||||
**
|
||||
*******************************************************************/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <stand.h>
|
||||
#include "ficl.h"
|
||||
|
||||
|
||||
/*
|
||||
******************* FreeBSD P O R T B E G I N S H E R E ******************** Michael Smith
|
||||
*/
|
||||
|
@ -17,10 +17,8 @@
|
||||
** 29 jun 1998 (sadler) added variable sized hash table support
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h> /* sprintf */
|
||||
#include <stand.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include "ficl.h"
|
||||
|
||||
static char *dictCopyName(FICL_DICT *pDict, STRINGINFO si);
|
||||
|
@ -5,15 +5,11 @@
|
||||
** Created: 16 Oct 1997
|
||||
** Implementations of FICL external interface functions...
|
||||
**
|
||||
** (simple) port to Linux, Skip Carter 26 March 1998
|
||||
**
|
||||
*******************************************************************/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <stand.h>
|
||||
#include "ficl.h"
|
||||
|
||||
|
||||
/*
|
||||
******************* FreeBSD P O R T B E G I N S H E R E ******************** Michael Smith
|
||||
*/
|
||||
|
@ -5,15 +5,11 @@
|
||||
** Created: 16 Oct 1997
|
||||
** Implementations of FICL external interface functions...
|
||||
**
|
||||
** (simple) port to Linux, Skip Carter 26 March 1998
|
||||
**
|
||||
*******************************************************************/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <stand.h>
|
||||
#include "ficl.h"
|
||||
|
||||
|
||||
/*
|
||||
******************* FreeBSD P O R T B E G I N S H E R E ******************** Michael Smith
|
||||
*/
|
||||
|
@ -13,11 +13,9 @@
|
||||
** of the interp.
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stand.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include "ficl.h"
|
||||
|
||||
static char digits[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
|
@ -7,10 +7,8 @@
|
||||
**
|
||||
*******************************************************************/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <stand.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include "ficl.h"
|
||||
#include "math64.h"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user