demux: mp4: set bitmap mask when possible
[vlc.git] / src / darwin / error.c
blobe51b912b95acad1633e75ffc96ec02e701c73286
1 /*****************************************************************************
2 * error.c: Darwin error messages handling
3 *****************************************************************************
4 * Copyright © 2006-2013 Rémi Denis-Courmont
5 * © 2013 Felix Paul Kühne
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.
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.
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 *****************************************************************************/
22 #ifdef HAVE_CONFIG_H
23 # include "config.h"
24 #endif
26 #include <stdlib.h>
27 #include <errno.h>
29 #include <vlc_common.h>
31 const char *vlc_strerror_c(int errnum)
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];
37 return _("Unknown error");
40 const char *vlc_strerror(int errnum)
42 return vlc_strerror_c(errnum);