Deleted Added
full compact
fmt.c (37027) fmt.c (41580)
1/*-
2 * Copyright (c) 1992, 1993, 1994
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

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

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)fmt.c 8.4 (Berkeley) 4/15/94";
37#endif
38static const char rcsid[] =
1/*-
2 * Copyright (c) 1992, 1993, 1994
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

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

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)fmt.c 8.4 (Berkeley) 4/15/94";
37#endif
38static const char rcsid[] =
39 "$Id: fmt.c,v 1.11 1998/05/15 06:29:15 charnier Exp $";
39 "$Id: fmt.c,v 1.12 1998/06/17 11:33:10 jkoshy Exp $";
40#endif /* not lint */
41
40#endif /* not lint */
41
42#include <sys/param.h>
43#include <sys/syslimits.h>
42#include <sys/types.h>
44#include <sys/time.h>
45#include <sys/resource.h>
43#include <sys/time.h>
44#include <sys/resource.h>
45#include <err.h>
46#include <stdio.h>
47#include <stdlib.h>
48#include <string.h>
49#include <unistd.h>
50#include <vis.h>
51#include "ps.h"
52
53static char *cmdpart __P((char *));

--- 78 unchanged lines hidden ---
46#include <stdio.h>
47#include <stdlib.h>
48#include <string.h>
49#include <unistd.h>
50#include <vis.h>
51#include "ps.h"
52
53static char *cmdpart __P((char *));

--- 78 unchanged lines hidden ---