Changeset a68f737 in mainline for uspace/lib/libc/include
- Timestamp:
- 2009-06-08T12:34:38Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d9c8c81
- Parents:
- f8ef660
- Location:
- uspace/lib/libc/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/include/stdio.h
rf8ef660 ra68f737 38 38 #include <sys/types.h> 39 39 #include <stdarg.h> 40 #include <libadt/list.h> 40 41 41 42 #define EOF (-1) … … 56 57 57 58 typedef struct { 59 /** Linked list pointer. */ 60 link_t link; 61 58 62 /** Underlying file descriptor. */ 59 63 int fd; … … 71 75 int phone; 72 76 } FILE; 73 74 extern FILE stdin_null;75 extern FILE stdout_klog;76 77 77 78 extern FILE *stdin; -
uspace/lib/libc/include/vfs/vfs.h
rf8ef660 ra68f737 56 56 unsigned int); 57 57 58 extern void stdio_init(int filc, fdi_node_t *filv[]); 59 extern void stdio_done(void); 60 58 61 extern int open_node(fdi_node_t *, int); 59 62 extern int fd_phone(int); 60 extern voidfd_node(int, fdi_node_t *);63 extern int fd_node(int, fdi_node_t *); 61 64 62 65 extern FILE *fopen_node(fdi_node_t *, const char *); 63 66 extern int fphone(FILE *); 64 extern voidfnode(FILE *, fdi_node_t *);67 extern int fnode(FILE *, fdi_node_t *); 65 68 66 69 #endif
Note:
See TracChangeset
for help on using the changeset viewer.