source: trunk/kernel/syscalls/shared_include/almos-mkh/stdio.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 632 bytes
Line 
1#ifndef _SHARED_STDIO_H_
2#define _SHARED_STDIO_H_
3/*******************************************************************************************
4 * This enum defines the operation mnemonics for the "lseek" syscall.
5 ******************************************************************************************/
6
7typedef enum
8{
9    SEEK_SET  = 0,             /*! new_offset <= offset                                   */
10    SEEK_CUR  = 1,             /*! new_offset <= current_offset + offset                  */
11    SEEK_END  = 2,             /*! new_offset <= current_size + offset                    */
12}
13lseek_operation_t;
14
15
16#endif
Note: See TracBrowser for help on using the repository browser.