Deleted Added
full compact
popen.c (45369) popen.c (50479)
1/*
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software written by Ken Arnold and
6 * published in UNIX Review, Vol. 6, No. 8.
7 *
8 * Redistribution and use in source and binary forms are permitted

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

23 * globbing stuff since we don't need it. also execvp instead of execv.
24 */
25
26#ifndef lint
27#if 0
28static char sccsid[] = "@(#)popen.c 5.7 (Berkeley) 2/14/89";
29#endif
30static const char rcsid[] =
1/*
2 * Copyright (c) 1988 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * This code is derived from software written by Ken Arnold and
6 * published in UNIX Review, Vol. 6, No. 8.
7 *
8 * Redistribution and use in source and binary forms are permitted

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

23 * globbing stuff since we don't need it. also execvp instead of execv.
24 */
25
26#ifndef lint
27#if 0
28static char sccsid[] = "@(#)popen.c 5.7 (Berkeley) 2/14/89";
29#endif
30static const char rcsid[] =
31 "$Id: popen.c,v 1.5 1997/09/15 06:39:07 charnier Exp $";
31 "$FreeBSD: head/usr.sbin/cron/cron/popen.c 50479 1999-08-28 01:35:59Z peter $";
32#endif /* not lint */
33
34#include "cron.h"
35#include <sys/signal.h>
36#include <fcntl.h>
37
38
39#define MAX_ARGS 100

--- 140 unchanged lines hidden ---
32#endif /* not lint */
33
34#include "cron.h"
35#include <sys/signal.h>
36#include <fcntl.h>
37
38
39#define MAX_ARGS 100

--- 140 unchanged lines hidden ---