Deleted Added
full compact
subr.c (189707) subr.c (200420)
1/*-
2 * Copyright (c) 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

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

33
34#if 0
35#ifndef lint
36static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93";
37#endif /* not lint */
38#endif
39
40#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 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

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

33
34#if 0
35#ifndef lint
36static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93";
37#endif /* not lint */
38#endif
39
40#include <sys/cdefs.h>
41__FBSDID("$FreeBSD: head/usr.bin/ktrace/subr.c 189707 2009-03-11 21:48:36Z jhb $");
41__FBSDID("$FreeBSD: head/usr.bin/ktrace/subr.c 200420 2009-12-11 23:35:38Z delphij $");
42
43#include <sys/param.h>
44#include <sys/file.h>
45#include <sys/proc.h>
46#include <sys/time.h>
47#include <sys/uio.h>
48#include <sys/ktrace.h>
49
42
43#include <sys/param.h>
44#include <sys/file.h>
45#include <sys/proc.h>
46#include <sys/time.h>
47#include <sys/uio.h>
48#include <sys/ktrace.h>
49
50#include <stdio.h>
51
52#include "ktrace.h"
53
54void timevaladd(struct timeval *, struct timeval *);
55void timevalsub(struct timeval *, struct timeval *);
56void timevalfix(struct timeval *);
57
58int
59getpoints(char *s)

--- 68 unchanged lines hidden ---
50#include "ktrace.h"
51
52void timevaladd(struct timeval *, struct timeval *);
53void timevalsub(struct timeval *, struct timeval *);
54void timevalfix(struct timeval *);
55
56int
57getpoints(char *s)

--- 68 unchanged lines hidden ---