mirror of
https://github.com/PDP-10/its.git
synced 2026-03-28 10:52:52 +00:00
20 lines
217 B
C
20 lines
217 B
C
/*
|
|
* Bob Denny 28-Aug-82 Remove reference to stdio.h
|
|
*/
|
|
|
|
#ifdef vms
|
|
#include "c:lex.h"
|
|
#else
|
|
#include <lex.h>
|
|
#endif
|
|
|
|
/*)LIBRARY
|
|
*/
|
|
|
|
extern char *llp2;
|
|
|
|
lexchar()
|
|
{
|
|
return(llend<llp2? *llend++&0377: lexgetc());
|
|
}
|