Changeset e1a27be in mainline for abi/include/klog.h
- Timestamp:
- 2012-12-29T10:48:35Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 17cc8f4f
- Parents:
- 8f88beb (diff), c928bb7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
abi/include/klog.h
r8f88beb re1a27be 1 1 /* 2 * Copyright (c) 20 06 Martin Decky2 * Copyright (c) 2012 Jakub Jermar 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libc29 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef LIBC_BOOL_H_36 #define LIBC_BOOL_H_35 #ifndef ABI_KLOG_H_ 36 #define ABI_KLOG_H_ 37 37 38 #include <libarch/types.h> 39 #include <abi/bool.h> 40 41 #define false 0 42 #define true 1 38 enum { 39 KLOG_UNKNOW, 40 KLOG_WRITE, 41 KLOG_UPDATE, 42 KLOG_COMMAND 43 }; 43 44 44 45 #endif
Note:
See TracChangeset
for help on using the changeset viewer.