blob: 3e9b37e155826cfa0f1720b112e0f3ef2d68c95f (
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 <errno.h>
#include <stdio.h> /* For _sys_errlist_internal */
/* Omit `const' because we are included with `static'
defined to `static const'. */
static struct error_subsystem err_hurd_sub[] =
{
{ "(os/hurd)", _HURD_ERRNOS, _sys_errlist_internal },
};
|