Changeset b5e68c8 in mainline for uspace/app/getterm/welcome.c
- Timestamp:
- 2011-05-12T16:49:44Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f36787d7
- Parents:
- e80329d6 (diff), 750636a (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. - File:
-
- 1 moved
-
uspace/app/getterm/welcome.c (moved) (moved from kernel/arch/ia32/include/memstr.h ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/getterm/welcome.c
re80329d6 rb5e68c8 1 1 /* 2 * Copyright (c) 20 05 Sergey Bondari2 * Copyright (c) 2010 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup ia3229 /** @addtogroup getterm 30 30 * @{ 31 31 */ 32 /** @file 32 /** 33 * @file 33 34 */ 34 35 35 #i fndef KERN_ia32_MEMSTR_H_36 # define KERN_ia32_MEMSTR_H_36 #include <stdio.h> 37 #include "welcome.h" 37 38 38 #define memcpy(dst, src, cnt) __builtin_memcpy((dst), (src), (cnt)) 39 40 extern void memsetw(void *, size_t, uint16_t); 41 extern void memsetb(void *, size_t, uint8_t); 42 43 #endif 39 /** Welcome message and survival tips. */ 40 void welcome_msg_print(void) 41 { 42 printf("Welcome to HelenOS!\n"); 43 printf("http://www.helenos.org/\n\n"); 44 printf("Type 'help' [Enter] to see a few survival tips.\n\n"); 45 } 44 46 45 47 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.
