home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 6
/
FreshFish_September1994.bin
/
bbs
/
dev
/
modula-v1.0d.lha
/
Modula
/
dice
/
dice.LHA
/
include
/
lists.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1990-08-03
|
328 b
|
25 lines
/*
* LISTS.H
*
* (c)Copyright 1990, Matthew Dillon, All Rights Reserved
*/
#ifndef _LISTS_H
#define _LISTS_H
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef EXEC_LISTS_H
#include <exec/lists.h>
#endif
extern void *GetHead();
extern void *GetTail();
extern void *GetSucc();
extern void *GetPred();
#endif