time.c (c3aac50f284c6cca5b4f2eb46aaa13812cb8b630) time.c (62f882d620bdfa783c01626012d69f468ba34e28)
1/*
2 * Copyright (c) 1987, 1988, 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

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

63static int getstathz __P((void));
64static void usage __P((void));
65
66int
67main(argc, argv)
68 int argc;
69 char **argv;
70{
1/*
2 * Copyright (c) 1987, 1988, 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

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

63static int getstathz __P((void));
64static void usage __P((void));
65
66int
67main(argc, argv)
68 int argc;
69 char **argv;
70{
71 extern char *optarg;
72 extern int optind;
73
74 register int pid;
75 int aflag, ch, lflag, status, pflag;
76 struct timeval before, after;
77 struct rusage ru;
78 FILE *out = stderr;
79 char *ofn = NULL;
80 int exitonsig = 0; /* Die with same signal as child */
81

--- 152 unchanged lines hidden ---
71 register int pid;
72 int aflag, ch, lflag, status, pflag;
73 struct timeval before, after;
74 struct rusage ru;
75 FILE *out = stderr;
76 char *ofn = NULL;
77 int exitonsig = 0; /* Die with same signal as child */
78

--- 152 unchanged lines hidden ---