blob: b077d247861ef23f9d2d0b028578c9b0e29ecd6d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
/* 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 },
};
|