blob: e9262143d4b4977b51fc07b9c6b6103699d688cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef MEM_ERRORS_H
#define MEM_ERRORS_H
enum mem_error {
MEM_OK = 0,
/* Returned when an implementation does not support
one of the vmap operations */
MEM_VMAP_UNSUPPORTED
};
#endif
|