Home
last modified time | relevance | path

Searched refs:lexbuf (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/mpl/dhcp/dist/keama/
H A Dkeama.c205 char lexbuf[256]; in parse_error() local
220 if (lix < sizeof(lexbuf) - 1) in parse_error()
221 lexbuf[lix++] = ' '; in parse_error()
223 for (; lix < (sizeof lexbuf) - 1 && (lix & 7); lix++) in parse_error()
224 lexbuf[lix] = ' '; in parse_error()
227 lexbuf[lix] = 0; in parse_error()
231 fprintf(stderr, "%s^\n", lexbuf); in parse_error()
/netbsd-src/external/mpl/dhcp/dist/common/
H A Dparse.c5597 char lexbuf [256]; in parse_warn() local
5622 if (lix < (sizeof lexbuf) - 1) in parse_warn()
5623 lexbuf [lix++] = ' '; in parse_warn()
5625 for (; lix < (sizeof lexbuf) - 1 && (lix & 7); lix++) in parse_warn()
5626 lexbuf [lix] = ' '; in parse_warn()
5629 lexbuf [lix] = 0; in parse_warn()
5635 syslog (LOG_ERR, "%s^", lexbuf); in parse_warn()
5645 IGNORE_RET (write (STDERR_FILENO, lexbuf, lix)); in parse_warn()