Changeset 3e6a98c5 in mainline for uspace/lib/c/include
- Timestamp:
- 2012-11-30T19:26:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0fa34dd
- Parents:
- e80d8f8
- Location:
- uspace/lib/c/include
- Files:
-
- 1 deleted
- 25 edited
- 1 moved
-
adt/hash_table.h (modified) (1 diff)
-
async.h (modified) (1 diff)
-
atomicdflt.h (modified) (1 diff)
-
bd_srv.h (modified) (1 diff)
-
bool.h (deleted)
-
cfg.h (modified) (1 diff)
-
ddi.h (modified) (1 diff)
-
device/hw_res.h (modified) (1 diff)
-
devman.h (modified) (1 diff)
-
fibril_synch.h (modified) (1 diff)
-
ieee_double.h (modified) (1 diff)
-
inet/iplink_srv.h (modified) (1 diff)
-
io/charfield.h (modified) (1 diff)
-
io/con_srv.h (modified) (1 diff)
-
io/console.h (modified) (1 diff)
-
io/window.h (modified) (1 diff)
-
ipc/vfs.h (modified) (1 diff)
-
loc.h (modified) (1 diff)
-
nic/nic.h (modified) (1 diff)
-
rtld/dynamic.h (modified) (1 diff)
-
sort.h (modified) (1 diff)
-
stacktrace.h (modified) (1 diff)
-
stats.h (modified) (1 diff)
-
stdbool.h (moved) (moved from uspace/lib/posix/include/posix/stdbool.h ) (2 diffs)
-
str.h (modified) (1 diff)
-
sys/stat.h (modified) (1 diff)
-
sysinfo.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/adt/hash_table.h
re80d8f8 r3e6a98c5 40 40 #include <adt/list.h> 41 41 #include <unistd.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 #include <macros.h> 44 44 -
uspace/lib/c/include/async.h
re80d8f8 r3e6a98c5 44 44 #include <sys/time.h> 45 45 #include <atomic.h> 46 #include < bool.h>46 #include <stdbool.h> 47 47 #include <task.h> 48 48 -
uspace/lib/c/include/atomicdflt.h
re80d8f8 r3e6a98c5 41 41 42 42 #include <stdint.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 45 45 typedef struct atomic { -
uspace/lib/c/include/bd_srv.h
re80d8f8 r3e6a98c5 39 39 #include <async.h> 40 40 #include <fibril_synch.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include <sys/types.h> 43 43 -
uspace/lib/c/include/cfg.h
re80d8f8 r3e6a98c5 41 41 #include <adt/list.h> 42 42 #include <sys/types.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 45 45 /** -
uspace/lib/c/include/ddi.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_DDI_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <sys/types.h> 40 40 #include <sys/time.h> -
uspace/lib/c/include/device/hw_res.h
re80d8f8 r3e6a98c5 38 38 #include <ipc/dev_iface.h> 39 39 #include <async.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 #define DMA_MODE_ON_DEMAND 0 -
uspace/lib/c/include/devman.h
re80d8f8 r3e6a98c5 40 40 #include <ipc/loc.h> 41 41 #include <async.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 extern async_exch_t *devman_exchange_begin_blocking(devman_interface_t); -
uspace/lib/c/include/fibril_synch.h
re80d8f8 r3e6a98c5 40 40 #include <libarch/tls.h> 41 41 #include <sys/time.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 typedef struct { -
uspace/lib/c/include/ieee_double.h
re80d8f8 r3e6a98c5 31 31 32 32 #include <stdint.h> 33 #include < bool.h>33 #include <stdbool.h> 34 34 35 35 /** Represents a non-negative floating point number: significand * 2^exponent */ -
uspace/lib/c/include/inet/iplink_srv.h
re80d8f8 r3e6a98c5 38 38 #include <async.h> 39 39 #include <fibril_synch.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 #include <sys/types.h> 42 42 -
uspace/lib/c/include/io/charfield.h
re80d8f8 r3e6a98c5 38 38 39 39 #include <sys/types.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 #include <io/color.h> 42 42 #include <io/style.h> -
uspace/lib/c/include/io/con_srv.h
re80d8f8 r3e6a98c5 44 44 #include <io/pixel.h> 45 45 #include <io/style.h> 46 #include < bool.h>46 #include <stdbool.h> 47 47 #include <sys/time.h> 48 48 #include <sys/types.h> -
uspace/lib/c/include/io/console.h
re80d8f8 r3e6a98c5 41 41 #include <io/keycode.h> 42 42 #include <async.h> 43 #include < bool.h>43 #include <stdbool.h> 44 44 #include <stdio.h> 45 45 -
uspace/lib/c/include/io/window.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_IO_WINDOW_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <sys/types.h> 40 40 #include <async.h> -
uspace/lib/c/include/ipc/vfs.h
re80d8f8 r3e6a98c5 38 38 #include <ipc/common.h> 39 39 #include <sys/types.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 #define FS_NAME_MAXLEN 20 -
uspace/lib/c/include/loc.h
re80d8f8 r3e6a98c5 38 38 #include <ipc/loc.h> 39 39 #include <async.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 typedef void (*loc_cat_change_cb_t)(void); -
uspace/lib/c/include/nic/nic.h
re80d8f8 r3e6a98c5 40 40 41 41 #include <nic/eth_phys.h> 42 #include < bool.h>42 #include <stdbool.h> 43 43 44 44 /** Ethernet address length. */ -
uspace/lib/c/include/rtld/dynamic.h
re80d8f8 r3e6a98c5 36 36 #define LIBC_RTLD_DYNAMIC_H_ 37 37 38 #include < bool.h>38 #include <stdbool.h> 39 39 #include <rtld/elf_dyn.h> 40 40 #include <libarch/rtld/dynamic.h> -
uspace/lib/c/include/sort.h
re80d8f8 r3e6a98c5 37 37 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 41 41 typedef int (* sort_cmp_t)(void *, void *, void *); -
uspace/lib/c/include/stacktrace.h
re80d8f8 r3e6a98c5 38 38 39 39 #include <sys/types.h> 40 #include < bool.h>40 #include <stdbool.h> 41 41 42 42 typedef struct { -
uspace/lib/c/include/stats.h
re80d8f8 r3e6a98c5 39 39 #include <thread.h> 40 40 #include <stdint.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 #include <sys/types.h> 43 43 #include <abi/sysinfo.h> -
uspace/lib/c/include/stdbool.h
re80d8f8 r3e6a98c5 1 1 /* 2 * Copyright (c) 20 11 Jiri Zarevucky2 * Copyright (c) 2006 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup lib posix29 /** @addtogroup libc 30 30 * @{ 31 31 */ 32 /** @file Boolean type and values.32 /** @file 33 33 */ 34 34 35 #ifndef POSIX_STDBOOL_H_36 #define POSIX_STDBOOL_H_35 #ifndef LIBC_BOOL_H_ 36 #define LIBC_BOOL_H_ 37 37 38 #ifdef LIBC_BOOL_H_ 38 #include <libarch/types.h> 39 #include <abi/bool.h> 39 40 40 #if (!defined(POSIX_STDIO_H_)) && \ 41 (!defined(POSIX_STDLIB_H_)) && \ 42 (!defined(POSIX_STRING_H_)) 43 #error "You can't include bool.h and stdbool.h at the same time." 41 #define false 0 42 #define true 1 43 44 #define __bool_true_false_are_defined 1 45 44 46 #endif 45 47 46 #endif /* LIBC_BOOL_H */ 47 48 #define LIBC_BOOL_H_ 49 50 #define bool _Bool 51 #define true 1 52 #define false 0 53 #define __bool_true_false_are_defined 1 54 55 #endif /* POSIX_STDBOOL_H_ */ 48 /** @} 49 */ -
uspace/lib/c/include/str.h
re80d8f8 r3e6a98c5 39 39 #include <mem.h> 40 40 #include <sys/types.h> 41 #include < bool.h>41 #include <stdbool.h> 42 42 43 43 #define U_SPECIAL '?' -
uspace/lib/c/include/sys/stat.h
re80d8f8 r3e6a98c5 37 37 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <ipc/vfs.h> 41 41 #include <ipc/loc.h> -
uspace/lib/c/include/sysinfo.h
re80d8f8 r3e6a98c5 37 37 38 38 #include <sys/types.h> 39 #include < bool.h>39 #include <stdbool.h> 40 40 #include <abi/sysinfo.h> 41 41
Note:
See TracChangeset
for help on using the changeset viewer.
