Deleted Added
full compact
aicasm.c (4614) aicasm.c (5647)
1/*
2 * Adaptec 274x device driver for Linux.
3 * Copyright (c) 1994 The University of Calgary Department of Computer Science.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.

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

20 * may be of the form:
21 *
22 * <label>*
23 * <label>* <undef-sym> = <value>
24 * <label>* <opcode> <operand>*
25 *
26 * A <label> is an <undef-sym> ending in a colon. Spaces, tabs, and commas
27 * are token separators.
1/*
2 * Adaptec 274x device driver for Linux.
3 * Copyright (c) 1994 The University of Calgary Department of Computer Science.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.

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

20 * may be of the form:
21 *
22 * <label>*
23 * <label>* <undef-sym> = <value>
24 * <label>* <opcode> <operand>*
25 *
26 * A <label> is an <undef-sym> ending in a colon. Spaces, tabs, and commas
27 * are token separators.
28 *
29 * $Id$
28 */
29
30/* #define _POSIX_SOURCE 1 */
31#define _POSIX_C_SOURCE 2
32
33#include <ctype.h>
34#include <stdio.h>
35#include <string.h>

--- 549 unchanged lines hidden ---
30 */
31
32/* #define _POSIX_SOURCE 1 */
33#define _POSIX_C_SOURCE 2
34
35#include <ctype.h>
36#include <stdio.h>
37#include <string.h>

--- 549 unchanged lines hidden ---