strerror.c revision 174295
112694SHai-May.Chao@Sun.COM/*
212694SHai-May.Chao@Sun.COM * Copyright (c) 2002-2006 Ion Badulescu
312694SHai-May.Chao@Sun.COM * Copyright (c) 1997-2006 Erez Zadok
412694SHai-May.Chao@Sun.COM * Copyright (c) 1990 Jan-Simon Pendry
512694SHai-May.Chao@Sun.COM * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
612694SHai-May.Chao@Sun.COM * Copyright (c) 1990 The Regents of the University of California.
712694SHai-May.Chao@Sun.COM * All rights reserved.
812694SHai-May.Chao@Sun.COM *
912694SHai-May.Chao@Sun.COM * This code is derived from software contributed to Berkeley by
1012694SHai-May.Chao@Sun.COM * Jan-Simon Pendry at Imperial College, London.
1112694SHai-May.Chao@Sun.COM *
1212694SHai-May.Chao@Sun.COM * Redistribution and use in source and binary forms, with or without
1312694SHai-May.Chao@Sun.COM * modification, are permitted provided that the following conditions
1412694SHai-May.Chao@Sun.COM * are met:
1512694SHai-May.Chao@Sun.COM * 1. Redistributions of source code must retain the above copyright
1612694SHai-May.Chao@Sun.COM *    notice, this list of conditions and the following disclaimer.
1712694SHai-May.Chao@Sun.COM * 2. Redistributions in binary form must reproduce the above copyright
1812694SHai-May.Chao@Sun.COM *    notice, this list of conditions and the following disclaimer in the
1912694SHai-May.Chao@Sun.COM *    documentation and/or other materials provided with the distribution.
2012694SHai-May.Chao@Sun.COM * 3. All advertising materials mentioning features or use of this software
2112694SHai-May.Chao@Sun.COM *    must display the following acknowledgment:
2212694SHai-May.Chao@Sun.COM *      This product includes software developed by the University of
2312694SHai-May.Chao@Sun.COM *      California, Berkeley and its contributors.
2412694SHai-May.Chao@Sun.COM * 4. Neither the name of the University nor the names of its contributors
25 *    may be used to endorse or promote products derived from this software
26 *    without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 *
40 *
41 * File: am-utils/libamu/strerror.c
42 *
43 */
44
45#ifdef HAVE_CONFIG_H
46# include <config.h>
47#endif /* HAVE_CONFIG_H */
48#include <am_defs.h>
49#include <amu.h>
50
51
52/*
53 * Convert errno to a string
54 */
55char *
56strerror(int errnum)
57{
58#ifdef HAVE_EXTERN_SYS_ERRLIST
59  if (errnum < 0 || errnum >= (sizeof(sys_errlist) >> 2)) {
60    static char errstr[30];
61    xsnprintf(errstr, sizeof(errstr), "Unknown error #%d", errnum);
62    return errstr;
63  }
64  return sys_errlist[error];
65#else  /* not HAVE_EXTERN_SYS_ERRLIST */
66  return "unknown (strerror not available)";
67#endif /* not HAVE_EXTERN_SYS_ERRLIST */
68}
69