mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
11 lines
326 B
Text
11 lines
326 B
Text
/* This file defines the Mach error system for Hurd server errors. */
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
/* Omit `const' because we are included with `static'
|
|
defined to `static const'. */
|
|
static struct error_subsystem err_hurd_sub[] =
|
|
{
|
|
{ "(os/hurd)", _HURD_ERRNOS, (const char *const *) _sys_errlist },
|
|
};
|