Home | History | Annotate | Download | only in include
      1 
      2 /*
      3  *  Copyright (c) 2003, Intel Corporation. All rights reserved.
      4  *  Created by:  crystal.xiong REMOVE-THIS AT intel DOT com
      5  *  This file is licensed under the GPL license.  For the full content
      6  *  of this license, see the COPYING file at the top level of this
      7  *  source tree.
      8  */
      9 
     10 #include <errno.h>
     11 #include <string.h>
     12 
     13 #ifndef EOWNERDEAD
     14 #define EOWNERDEAD	ESRCH
     15 #endif
     16 #ifndef ENOTRECOVERABLE
     17 #define ENOTRECOVERABLE	EBADR
     18 #endif
     19 
     20 #define PASS	0
     21 #define FAIL	1
     22 #define UNRESOLVED 2
     23 
     24 #define DPRINTF(a, x, args...)     fprintf(a, x , ##args);
     25 #define EPRINTF(x, args...)	fprintf(stderr, "%s: %d: " x "\n",__FILE__, __LINE__, ##args);
     26 
     27