Deleted Added
full compact
sysdep.h (40843) sysdep.h (43078)
1/*******************************************************************
2 s y s d e p . h
3** Forth Inspired Command Language
4** Author: John Sadler (john_sadler@alum.mit.edu)
5** Created: 16 Oct 1997
6** Ficl system dependent types and prototypes...
7**
8** Note: Ficl also depends on the use of "assert" when

--- 201 unchanged lines hidden (view full) ---

210** ficlLongMul multiplies two UNS32s and returns a 64 bit unsigned
211** product
212** ficlLongDiv divides an UNS64 by an UNS32 and returns UNS32 quotient
213** and remainder
214*/
215struct vm;
216void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
217void *ficlMalloc (size_t size);
1/*******************************************************************
2 s y s d e p . h
3** Forth Inspired Command Language
4** Author: John Sadler (john_sadler@alum.mit.edu)
5** Created: 16 Oct 1997
6** Ficl system dependent types and prototypes...
7**
8** Note: Ficl also depends on the use of "assert" when

--- 201 unchanged lines hidden (view full) ---

210** ficlLongMul multiplies two UNS32s and returns a 64 bit unsigned
211** product
212** ficlLongDiv divides an UNS64 by an UNS32 and returns UNS32 quotient
213** and remainder
214*/
215struct vm;
216void ficlTextOut(struct vm *pVM, char *msg, int fNewline);
217void *ficlMalloc (size_t size);
218void *ficlRealloc (void *p, size_t size);
218void ficlFree (void *p);
219
220/*
221** Stub function for dictionary access control - does nothing
222** by default, user can redefine to guarantee exclusive dict
223** access to a single thread for updates. All dict update code
224** must be bracketed as follows:
225** ficlLockDictionary(TRUE);

--- 26 unchanged lines hidden ---
219void ficlFree (void *p);
220
221/*
222** Stub function for dictionary access control - does nothing
223** by default, user can redefine to guarantee exclusive dict
224** access to a single thread for updates. All dict update code
225** must be bracketed as follows:
226** ficlLockDictionary(TRUE);

--- 26 unchanged lines hidden ---