#ifndef _PPC64_ERRNO_H #define _PPC64_ERRNO_H /* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #include #undef EDEADLOCK #define EDEADLOCK 58 /* File locking deadlock error */ /* Should never be seen by user programs */ #define ERESTARTSYS 512 #define ERESTARTNOINTR 513 #define ERESTARTNOHAND 514 /* restart if no handler.. */ #define ENOIOCTLCMD 515 /* No ioctl command */ #define _LAST_ERRNO 515 #endif