Deleted Added
full compact
c89.c (87258) c89.c (87628)
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 87628 2001-12-10 21:13:08Z dwmalone $");
31
32
32__FBSDID("$FreeBSD: head/usr.bin/c89/c89.c 87258 2001-12-03 01:15:28Z markm $");
33
34#include <err.h>
35#include <stdio.h>
36#include <stdlib.h>
37#include <string.h>
38
39#include <unistd.h>
40
41#define CC "/usr/bin/cc" /* The big kahuna doing the actual work. */

--- 71 unchanged lines hidden ---
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. */

--- 71 unchanged lines hidden ---