perror.c (4d846d260e2b9a3d4d0a701462568268cbfe7a5b) | perror.c (1a7ac2bd24c1763b0d32e23d9c70308fbc24b07a) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2009 Hudson River Trading LLC 5 * Written by: George V. Neville-Neil <gnn@FreeBSD.org> 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 23 unchanged lines hidden (view full) --- 32 33#include <stdio.h> 34#include <stdlib.h> 35#include <string.h> 36#include <err.h> 37#include <locale.h> 38#include <sys/errno.h> 39 | 1/*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2009 Hudson River Trading LLC 5 * Written by: George V. Neville-Neil <gnn@FreeBSD.org> 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without --- 23 unchanged lines hidden (view full) --- 32 33#include <stdio.h> 34#include <stdlib.h> 35#include <string.h> 36#include <err.h> 37#include <locale.h> 38#include <sys/errno.h> 39 |
40static void usage(void); | 40static void usage(void) __dead2; |
41 42int 43main(int argc, char **argv) 44{ 45 char *cp; 46 char *errstr; 47 long errnum; 48 --- 26 unchanged lines hidden --- | 41 42int 43main(int argc, char **argv) 44{ 45 char *cp; 46 char *errstr; 47 long errnum; 48 --- 26 unchanged lines hidden --- |