]> git.sesse.net Git - vlc/blob - src/darwin/error.c
decoder: add input_DecoderFlush()
[vlc] / src / darwin / error.c
1 /*****************************************************************************
2  * error.c: Darwin error messages handling
3  *****************************************************************************
4  * Copyright © 2006-2013 Rémi Denis-Courmont
5  *           © 2013 Felix Paul Kühne
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Lesser General Public License as published by
9  * the Free Software Foundation; either version 2.1 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with this program; if not, write to the Free Software Foundation,
19  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
20  *****************************************************************************/
21
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
25
26 #include <stdlib.h>
27 #include <errno.h>
28
29 #include <vlc_common.h>
30
31 const char *vlc_strerror_c(int errnum)
32 {
33     /* We cannot simply use strerror() here, since it is not thread-safe. */
34     if ((unsigned)errnum < (unsigned)sys_nerr)
35         return sys_errlist[errnum];
36
37     return _("Unknown error");
38 }
39
40 const char *vlc_strerror(int errnum)
41 {
42     return vlc_strerror_c(errnum);
43 }