1*61d06d6bSBaptiste Daroussin /* $Id: test-err.c,v 1.1 2015/10/11 21:12:55 schwarze Exp $ */
2*61d06d6bSBaptiste Daroussin /*
3*61d06d6bSBaptiste Daroussin * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
4*61d06d6bSBaptiste Daroussin *
5*61d06d6bSBaptiste Daroussin * Permission to use, copy, modify, and distribute this software for any
6*61d06d6bSBaptiste Daroussin * purpose with or without fee is hereby granted, provided that the above
7*61d06d6bSBaptiste Daroussin * copyright notice and this permission notice appear in all copies.
8*61d06d6bSBaptiste Daroussin *
9*61d06d6bSBaptiste Daroussin * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10*61d06d6bSBaptiste Daroussin * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11*61d06d6bSBaptiste Daroussin * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12*61d06d6bSBaptiste Daroussin * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13*61d06d6bSBaptiste Daroussin * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14*61d06d6bSBaptiste Daroussin * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15*61d06d6bSBaptiste Daroussin * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16*61d06d6bSBaptiste Daroussin */
17*61d06d6bSBaptiste Daroussin
18*61d06d6bSBaptiste Daroussin #include <err.h>
19*61d06d6bSBaptiste Daroussin
20*61d06d6bSBaptiste Daroussin int
main(void)21*61d06d6bSBaptiste Daroussin main(void)
22*61d06d6bSBaptiste Daroussin {
23*61d06d6bSBaptiste Daroussin warnx("%d. warnx", 1);
24*61d06d6bSBaptiste Daroussin warn("%d. warn", 2);
25*61d06d6bSBaptiste Daroussin err(0, "%d. err", 3);
26*61d06d6bSBaptiste Daroussin /* NOTREACHED */
27*61d06d6bSBaptiste Daroussin return 1;
28*61d06d6bSBaptiste Daroussin }
29