xref: /titanic_51/usr/src/cmd/sgs/test/ld/assert-deflib/link.c (revision b533f56bf95137d3de6666bd923e15ec373ea611)
1*b533f56bSRobert Mustacchi /*
2*b533f56bSRobert Mustacchi  * This file and its contents are supplied under the terms of the
3*b533f56bSRobert Mustacchi  * Common Development and Distribution License ("CDDL"), version 1.0.
4*b533f56bSRobert Mustacchi  * You may only use this file in accordance with the terms of version
5*b533f56bSRobert Mustacchi  * 1.0 of the CDDL.
6*b533f56bSRobert Mustacchi  *
7*b533f56bSRobert Mustacchi  * A full copy of the text of the CDDL should have accompanied this
8*b533f56bSRobert Mustacchi  * source.  A copy of the CDDL is also available via the Internet at
9*b533f56bSRobert Mustacchi  * http://www.illumos.org/license/CDDL.
10*b533f56bSRobert Mustacchi  */
11*b533f56bSRobert Mustacchi 
12*b533f56bSRobert Mustacchi /*
13*b533f56bSRobert Mustacchi  * Copyright (c) 2012, Joyent, Inc.
14*b533f56bSRobert Mustacchi  */
15*b533f56bSRobert Mustacchi 
16*b533f56bSRobert Mustacchi #include <stdio.h>
17*b533f56bSRobert Mustacchi 
18*b533f56bSRobert Mustacchi int
19*b533f56bSRobert Mustacchi main(void)
20*b533f56bSRobert Mustacchi {
21*b533f56bSRobert Mustacchi 	(void) printf("Hello, world!\n");
22*b533f56bSRobert Mustacchi 	return (0);
23*b533f56bSRobert Mustacchi }
24