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

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

34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)psignal.c 8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37
38/*
39 * Print the name of the signal indicated
40 * along with the supplied message.
41 */
1/*
2 * Copyright (c) 1983, 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

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

34#if defined(LIBC_SCCS) && !defined(lint)
35static char sccsid[] = "@(#)psignal.c 8.1 (Berkeley) 6/4/93";
36#endif /* LIBC_SCCS and not lint */
37
38/*
39 * Print the name of the signal indicated
40 * along with the supplied message.
41 */
42#include <sys/signal.h>
42#include
43#include <string.h>
44#include <unistd.h>
45
46void
47psignal(sig, s)
48 unsigned int sig;
49 const char *s;
50{

--- 15 unchanged lines hidden ---
43#include <string.h>
44#include <unistd.h>
45
46void
47psignal(sig, s)
48 unsigned int sig;
49 const char *s;
50{

--- 15 unchanged lines hidden ---