Deleted Added
full compact
uname.c (1590) uname.c (23690)
1/*-
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

33
34#ifndef lint
35static char copyright[] =
36"@(#) Copyright (c) 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
1/*-
2 * Copyright (c) 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

33
34#ifndef lint
35static char copyright[] =
36"@(#) Copyright (c) 1993\n\
37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41static char sccsid[] = "@(#)uname.c 8.1 (Berkeley) 6/6/93";
41static char sccsid[] = "@(#)uname.c 8.2 (Berkeley) 5/4/95";
42#endif /* not lint */
43
44#include <sys/param.h>
45#include <sys/sysctl.h>
46
47#include <err.h>
48#include <stdio.h>
49#include <stdlib.h>
42#endif /* not lint */
43
44#include <sys/param.h>
45#include <sys/sysctl.h>
46
47#include <err.h>
48#include <stdio.h>
49#include <stdlib.h>
50#include <unistd.h>
50
51void usage __P((void));
52
53int
54main(argc, argv)
55 int argc;
56 char *argv[];
57{

--- 105 unchanged lines hidden ---
51
52void usage __P((void));
53
54int
55main(argc, argv)
56 int argc;
57 char *argv[];
58{

--- 105 unchanged lines hidden ---