mirror of
https://github.com/PDP-10/its.git
synced 2026-03-22 17:08:15 +00:00
22 lines
212 B
C
22 lines
212 B
C
/*
|
|
* Bob Denny 28-Aug-82 Remove reference to stdio.h
|
|
*/
|
|
|
|
#ifdef vms
|
|
#include "c:lex.h"
|
|
#else
|
|
#include <lex.h>
|
|
#endif
|
|
|
|
/*)LIBRARY
|
|
*/
|
|
|
|
char *
|
|
token(cpp)
|
|
char **cpp;
|
|
{
|
|
if (cpp)
|
|
*cpp = llend;
|
|
return(llbuf);
|
|
}
|