- Timestamp:
- 2018-01-04T19:28:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0d0b319
- Parents:
- db3089d
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:28:42)
- Location:
- uspace
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/mytypes.h
rdb3089d r10de842 53 53 /** We need NULL defined. */ 54 54 #include <stddef.h> 55 56 #ifndef EOK 55 57 #define EOK 0 58 #endif 56 59 57 60 #include "bigint_t.h" -
uspace/lib/c/include/errno.h
rdb3089d r10de842 36 36 #define LIBC_ERRNO_H_ 37 37 38 typedef int errno_t; 39 38 #include <_bits/errno.h> 40 39 #include <abi/errno.h> 41 40 -
uspace/lib/c/include/types/common.h
rdb3089d r10de842 45 45 46 46 #include <_bits/all.h> 47 #include <_bits/errno.h> 47 48 48 49 #endif -
uspace/lib/ext4/include/ext4/types.h
rdb3089d r10de842 476 476 } ext4_directory_dx_block_t; 477 477 478 #define EXT4_ERR_BAD_DX_DIR (-75000)479 478 #define EXT4_DIRECTORY_HTREE_EOF UINT32_C(0x7fffffff) 480 479 -
uspace/lib/http/src/headers.c
rdb3089d r10de842 34 34 */ 35 35 36 #include <errno.h> 36 37 #include <stdio.h> 37 38 #include <stdlib.h> … … 41 42 #include <http/http.h> 42 43 #include <http/ctype.h> 43 #include <http/errno.h>44 44 45 45 #define HTTP_HEADER_LINE "%s: %s\r\n" -
uspace/lib/http/src/response.c
rdb3089d r10de842 34 34 */ 35 35 36 #include <errno.h> 36 37 #include <stdio.h> 37 38 #include <stdlib.h> … … 40 41 41 42 #include <http/http.h> 42 #include <http/errno.h>43 43 44 44 static bool is_digit(char c)
Note:
See TracChangeset
for help on using the changeset viewer.