Deleted Added
full compact
sleep.c (1574) sleep.c (11659)
1/*
2 * Copyright (c) 1989, 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

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

31 * SUCH DAMAGE.
32 */
33
34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)sleep.c 8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37
38#include <sys/time.h>
1/*
2 * Copyright (c) 1989, 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

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

31 * SUCH DAMAGE.
32 */
33
34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)sleep.c 8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37
38#include <sys/time.h>
39#include <sys/signal.h>
39#include
40#include <unistd.h>
41
42#define setvec(vec, a) \
43 vec.sv_handler = a; vec.sv_mask = vec.sv_onstack = 0
44
45static int ringring;
46
47unsigned int

--- 50 unchanged lines hidden ---
40#include <unistd.h>
41
42#define setvec(vec, a) \
43 vec.sv_handler = a; vec.sv_mask = vec.sv_onstack = 0
44
45static int ringring;
46
47unsigned int

--- 50 unchanged lines hidden ---