Changeset 3b10ae36 in mainline
- Timestamp:
- 2018-08-02T14:14:14Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0c27956
- Parents:
- 82d9087 (diff), 42964a7 (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. - Files:
-
- 8 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r82d9087 r3b10ae36 82 82 uspace/app/blkdump/blkdump 83 83 uspace/app/bnchmark/bnchmark 84 uspace/app/contacts/contacts 84 85 uspace/app/corecfg/corecfg 85 86 uspace/app/cpptest/cpptest … … 380 381 uspace/lib/posix/redefs-hide-libc-symbols.list 381 382 uspace/lib/posix/test-libposix 383 uspace/lib/sif/test-libsif 382 384 uspace/lib/uri/test-liburi 383 385 uspace/srv/audio/hound/hound -
boot/Makefile.common
r82d9087 r3b10ae36 176 176 $(USPACE_PATH)/app/blkdump/blkdump \ 177 177 $(USPACE_PATH)/app/bnchmark/bnchmark \ 178 $(USPACE_PATH)/app/contacts/contacts \ 178 179 $(USPACE_PATH)/app/corecfg/corecfg \ 179 180 $(USPACE_PATH)/app/cpptest/cpptest \ … … 240 241 $(USPACE_PATH)/lib/label/test-liblabel \ 241 242 $(USPACE_PATH)/lib/posix/test-libposix \ 243 $(USPACE_PATH)/lib/sif/test-libsif \ 242 244 $(USPACE_PATH)/lib/uri/test-liburi \ 243 245 $(USPACE_PATH)/drv/bus/usb/xhci/test-xhci \ -
uspace/Makefile
r82d9087 r3b10ae36 39 39 app/blkdump \ 40 40 app/bnchmark \ 41 app/contacts \ 41 42 app/corecfg \ 42 43 app/cpptest \ … … 229 230 lib/fmtutil \ 230 231 lib/scsi \ 232 lib/sif \ 231 233 lib/compress \ 232 234 lib/drv \ -
uspace/lib/c/include/stdio.h
r82d9087 r3b10ae36 178 178 179 179 extern FILE *tmpfile(void); 180 extern char *tmpnam(char *s) __attribute__((deprecated));180 extern char *tmpnam(char *s); 181 181 182 182 #ifdef _HELENOS_SOURCE
Note:
See TracChangeset
for help on using the changeset viewer.