- Timestamp:
- Jul 27, 2015, 10:03:19 PM (9 years ago)
- Location:
- soft/giet_vm/giet_libs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/stdio.c
r666 r671 172 172 ////////////////////////////////////////////////////////////////////////////// 173 173 174 ///////////////////// 175 void giet_tty_alloc( )174 ////////////////////////////////////////// 175 void giet_tty_alloc( unsigned int shared ) 176 176 { 177 177 if ( sys_call( SYSCALL_TTY_ALLOC, 178 0, 0, 0, 0 ) ) giet_exit("error in giet_tty_alloc()"); 178 shared, 179 0, 0, 0 ) ) giet_exit("error in giet_tty_alloc()"); 179 180 } 180 181 -
soft/giet_vm/giet_libs/stdio.h
r663 r671 207 207 ////////////////////////////////////////////////////////////////////////// 208 208 209 extern void giet_tty_alloc( );209 extern void giet_tty_alloc( unsigned int shared ); 210 210 211 211 extern void giet_tty_printf( char* format, ... ); 212 213 extern void giet_shr_printf( char* format, ... );214 212 215 213 extern void giet_tty_getc( char* byte );
Note: See TracChangeset
for help on using the changeset viewer.