Deleted Added
full compact
c89.c (146466) c89.c (200420)
1/*-
2 * This is the Posix.2 mandated C compiler. Basically, a hook to the
3 * cc(1) command.
4 *
5 * Copyright (c) 2001 by Jens Schweikhardt
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 */
29
30#include <sys/cdefs.h>
1/*-
2 * This is the Posix.2 mandated C compiler. Basically, a hook to the
3 * cc(1) command.
4 *
5 * Copyright (c) 2001 by Jens Schweikhardt
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/usr.bin/c89/c89.c 146466 2005-05-21 09:55:10Z ru $");
31__FBSDID("$FreeBSD: head/usr.bin/c89/c89.c 200420 2009-12-11 23:35:38Z delphij $");
32
33#include <err.h>
34#include <stdio.h>
35#include <stdlib.h>
32
33#include <err.h>
34#include <stdio.h>
35#include <stdlib.h>
36#include <string.h>
37
38#include <unistd.h>
39
40#define CC "/usr/bin/cc" /* The big kahuna doing the actual work. */
41#define N_ARGS_PREPENDED (sizeof(args_prepended) / sizeof(args_prepended[0]))
42
43/*
44 * We do not add -D_POSIX_SOURCE here because any POSIX source is supposed to

--- 67 unchanged lines hidden ---
36
37#include <unistd.h>
38
39#define CC "/usr/bin/cc" /* The big kahuna doing the actual work. */
40#define N_ARGS_PREPENDED (sizeof(args_prepended) / sizeof(args_prepended[0]))
41
42/*
43 * We do not add -D_POSIX_SOURCE here because any POSIX source is supposed to

--- 67 unchanged lines hidden ---