Changeset 1d465bf in mainline for uspace/lib
- Timestamp:
- 2011-04-03T15:34:24Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a3d4ca
- Parents:
- ec3e2ed0
- Location:
- uspace/lib
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/Makefile
rec3e2ed0 r1d465bf 152 152 $(COMMON_HEADER_ARCH): $(COMMON_HEADER) 153 153 ln -sfn ../../../$< $@ 154 155 test: 156 echo uspace_prefix=$(USPACE_PREFIX) 157 echo libc_prefix=$(LIBC_PREFIX) 158 echo linker_script=$(LINKER_SCRIPT) -
uspace/lib/c/arch/ia32/src/syscall.S
rec3e2ed0 r1d465bf 32 32 __syscall_fast_func: 33 33 .long __syscall_slow 34 .size __syscall_fast_func, . - __syscall_fast_func 34 35 35 36 .text -
uspace/lib/softint/Makefile
rec3e2ed0 r1d465bf 31 31 EXTRA_CFLAGS = -Iinclude 32 32 LIBRARY = libsoftint 33 SLIBRARY = libsoftint.so.0.0 34 LSONAME = libsoftint.so.0 33 35 34 36 SOURCES = \ -
uspace/lib/test/libtest.c
rec3e2ed0 r1d465bf 35 35 */ 36 36 37 //#include <stdio.h>37 #include <stdio.h> 38 38 #include "libtest.h" 39 39 … … 56 56 int test_fun2(void) 57 57 { 58 return number; 58 return 42; 59 // return number; 59 60 } 60 61 … … 65 66 // return 42; 66 67 // while(1); 67 return test_fun2(); 68 // return test_fun2(); 69 printf("Hello from libtest/test_func()!\n"); 70 return 42; 68 71 } 69 72
Note:
See TracChangeset
for help on using the changeset viewer.