1/* This file defines the Mach error system for Hurd server errors. */ 2 3#include <errno.h> 4#include <stdio.h> /* For _sys_errlist_internal */ 5 6/* Omit `const' because we are included with `static' 7 defined to `static const'. */ 8static struct error_subsystem err_hurd_sub[] = 9 { 10 { "(os/hurd)", _HURD_ERRNOS, _sys_errlist_internal }, 11 }; 12