Changeset 3bf907a in mainline for uspace/lib/libc
- Timestamp:
- 2009-06-04T16:36:47Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4a68194
- Parents:
- 8bfe48e
- Location:
- uspace/lib/libc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/Makefile.toolchain
r8bfe48e r3bf907a 30 30 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32 -finput-charset=UTF-8 \ 31 31 -fno-builtin -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \ 32 - nostdlib -nostdinc -pipe -g32 -Werror-implicit-function-declaration -nostdlib -nostdinc -pipe -g 33 33 LFLAGS = -M -N $(SOFTINT_PREFIX)/libsoftint.a 34 34 AFLAGS = -
uspace/lib/libc/generic/mem.c
r8bfe48e r3bf907a 96 96 static void *unaligned_memcpy(void *dst, const void *src, size_t n) 97 97 { 98 unsigned int i, j;98 size_t i, j; 99 99 struct along *adst = dst; 100 100 const struct along *asrc = src;
Note:
See TracChangeset
for help on using the changeset viewer.