Deleted Added
full compact
scan.l (16022) scan.l (16073)
1%{
2/* $NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $ */
3
4/*
5 * Copyright (c) 1994, 1995 Jochen Pohl
6 * All Rights Reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 31 unchanged lines hidden (view full) ---

40#include <string.h>
41#include <limits.h>
42#include <float.h>
43#include <ctype.h>
44#include <errno.h>
45#include <err.h>
46
47#include "lint1.h"
1%{
2/* $NetBSD: scan.l,v 1.8 1995/10/23 13:38:51 jpo Exp $ */
3
4/*
5 * Copyright (c) 1994, 1995 Jochen Pohl
6 * All Rights Reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 31 unchanged lines hidden (view full) ---

40#include <string.h>
41#include <limits.h>
42#include <float.h>
43#include <ctype.h>
44#include <errno.h>
45#include <err.h>
46
47#include "lint1.h"
48#include "cgram.tab.h"
48#include "y.tab.h"
49
50#define CHAR_MASK (~(~0 << CHAR_BIT))
51
52/* XXX declaration of strtouq() is missing in stdlib.h ? */
53extern u_quad_t strtouq __P((const char *, char **, int));
54
55/* Current position (its also updated when an included file is parsed) */
56pos_t curr_pos = { 1, "" };

--- 1369 unchanged lines hidden ---
49
50#define CHAR_MASK (~(~0 << CHAR_BIT))
51
52/* XXX declaration of strtouq() is missing in stdlib.h ? */
53extern u_quad_t strtouq __P((const char *, char **, int));
54
55/* Current position (its also updated when an included file is parsed) */
56pos_t curr_pos = { 1, "" };

--- 1369 unchanged lines hidden ---