Deleted Added
full compact
asa.c (96629) asa.c (146466)
1/* $NetBSD: asa.c,v 1.11 1997/09/20 14:55:00 lukem Exp $ */
2
3/*
4 * Copyright (c) 1993,94 Winning Strategies, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

31 */
32
33#include <sys/cdefs.h>
34#if 0
35#ifndef lint
36__RCSID("$NetBSD: asa.c,v 1.11 1997/09/20 14:55:00 lukem Exp $");
37#endif
38#endif
1/* $NetBSD: asa.c,v 1.11 1997/09/20 14:55:00 lukem Exp $ */
2
3/*
4 * Copyright (c) 1993,94 Winning Strategies, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

31 */
32
33#include <sys/cdefs.h>
34#if 0
35#ifndef lint
36__RCSID("$NetBSD: asa.c,v 1.11 1997/09/20 14:55:00 lukem Exp $");
37#endif
38#endif
39__FBSDID("$FreeBSD: head/usr.bin/asa/asa.c 96629 2002-05-15 03:31:40Z tjr $");
39__FBSDID("$FreeBSD: head/usr.bin/asa/asa.c 146466 2005-05-21 09:55:10Z ru $");
40
41#include <err.h>
42#include <stdio.h>
43#include <stdlib.h>
44#include <unistd.h>
45
46static void asa(FILE *);
47static void usage(void);

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

81
82 exit(exval);
83}
84
85static void
86usage(void)
87{
88
40
41#include <err.h>
42#include <stdio.h>
43#include <stdlib.h>
44#include <unistd.h>
45
46static void asa(FILE *);
47static void usage(void);

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

81
82 exit(exval);
83}
84
85static void
86usage(void)
87{
88
89 fprintf(stderr, "usage: asa [file...]\n");
89 fprintf(stderr, "usage: asa [file ...]\n");
90 exit(1);
91}
92
93static void
94asa(FILE *f)
95{
96 size_t len;
97 char *buf;

--- 44 unchanged lines hidden ---
90 exit(1);
91}
92
93static void
94asa(FILE *f)
95{
96 size_t len;
97 char *buf;

--- 44 unchanged lines hidden ---