mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 00:33:09 +00:00
0df5f9fb7e
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12875 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
582 B
C
19 lines
582 B
C
/* Copyright (c) 1988 Bellcore
|
|
** All Rights Reserved
|
|
** Permission is granted to copy or use this program, EXCEPT that it
|
|
** may not be sold for profit, the copyright notice must be reproduced
|
|
** on copies, and credit should be given to Bellcore where it is due.
|
|
** BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
|
|
*/
|
|
|
|
#ifndef C_INCLUDED
|
|
extern int C_is_cmd();
|
|
extern void C_clear_cmd();
|
|
extern void C_addcmd();
|
|
extern void C_docmds();
|
|
|
|
#define _C_CMDMAX 100
|
|
|
|
#define C_INCLUDED
|
|
#endif
|