- Timestamp:
- 2018-10-01T18:36:42Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5cef315
- Parents:
- 1938b381
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-09-29 16:13:55)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-10-01 18:36:42)
- Location:
- uspace
- Files:
-
- 6 edited
-
app/bdsh/cmds/modules/sleep/sleep.c (modified) (1 diff)
-
lib/c/arch/ia64/include/libarch/fibril_context.h (modified) (1 diff)
-
lib/c/generic/io/io.c (modified) (1 diff)
-
lib/c/generic/time.c (modified) (1 diff)
-
lib/pcm/src/format.c (modified) (1 diff)
-
lib/posix/include/posix/limits.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/sleep/sleep.c
r1938b381 r3f7fe9e 66 66 { 67 67 errno_t ret; 68 sec_t whole_seconds;69 usec_t frac_seconds;68 int64_t whole_seconds; 69 int64_t frac_seconds; 70 70 const char *endptr; 71 71 -
uspace/lib/c/arch/ia64/include/libarch/fibril_context.h
r1938b381 r3f7fe9e 76 76 77 77 #include <stdint.h> 78 #include <_bits/int128_t.h> 78 79 79 80 // Only save registers that must be preserved across function calls. -
uspace/lib/c/generic/io/io.c
r1938b381 r3f7fe9e 37 37 #include <str.h> 38 38 #include <errno.h> 39 #include <limits.h> 39 40 #include <stdbool.h> 40 41 #include <stdlib.h> -
uspace/lib/c/generic/time.c
r1938b381 r3f7fe9e 44 44 #include <ddi.h> 45 45 #include <libc.h> 46 #include <limits.h> 46 47 #include <stdint.h> 47 48 #include <stdio.h> -
uspace/lib/pcm/src/format.c
r1938b381 r3f7fe9e 39 39 #include <macros.h> 40 40 #include <stdio.h> 41 #include <inttypes.h> 41 42 42 43 #include "format.h" -
uspace/lib/posix/include/posix/limits.h
r1938b381 r3f7fe9e 36 36 #define POSIX_LIMITS_H_ 37 37 38 #include <libc/limits.h>38 #include_next <limits.h> 39 39 40 # undef PATH_MAX40 #ifndef PATH_MAX 41 41 #define PATH_MAX 256 42 #endif 42 43 43 44 #endif /* POSIX_LIMITS_H_ */
Note:
See TracChangeset
for help on using the changeset viewer.
