Deleted Added
full compact
fmt.c (99110) fmt.c (99457)
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

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

32 */
33
34#if 0
35#ifndef lint
36static char sccsid[] = "@(#)fmt.c 8.4 (Berkeley) 4/15/94";
37#endif
38#endif
39#include <sys/cdefs.h>
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

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

32 */
33
34#if 0
35#ifndef lint
36static char sccsid[] = "@(#)fmt.c 8.4 (Berkeley) 4/15/94";
37#endif
38#endif
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD: head/bin/ps/fmt.c 99110 2002-06-30 05:15:05Z obrien $");
40__FBSDID("$FreeBSD: head/bin/ps/fmt.c 99457 2002-07-05 15:58:27Z mike $");
41
42#include <sys/types.h>
43#include <sys/time.h>
44#include <sys/resource.h>
45
46#include <err.h>
47#include <limits.h>
48#include <stdio.h>
41
42#include <sys/types.h>
43#include <sys/time.h>
44#include <sys/resource.h>
45
46#include <err.h>
47#include <limits.h>
48#include <stdio.h>
49#include <stdint.h>
49#include <stdlib.h>
50#include <string.h>
51#include <unistd.h>
52#include <vis.h>
53
54#include "ps.h"
55
56static char *cmdpart(char *);

--- 78 unchanged lines hidden ---
50#include <stdlib.h>
51#include <string.h>
52#include <unistd.h>
53#include <vis.h>
54
55#include "ps.h"
56
57static char *cmdpart(char *);

--- 78 unchanged lines hidden ---