Changeset 2931
- Timestamp:
- Dec 30, 2006, 6:20:19 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libc/src/libc/io/ioctl.c
r2922 r2931 39 39 int _STD(ioctl)(int fh, unsigned long ulIOControl, ...) 40 40 { 41 LIBCLOG_ENTER("fh=%d ulIOControl=%#lx (% ul)\n", fh, ulIOControl, ulIOControl);41 LIBCLOG_ENTER("fh=%d ulIOControl=%#lx (%lu)\n", fh, ulIOControl, ulIOControl); 42 42 43 43 va_list va; … … 72 72 */ 73 73 #define __IOCLW(a) ((unsigned short)(a)) 74 #endif75 74 76 75 int _STD(ioctl) (int handle, unsigned long request, ...) … … 151 150 __libc_FHPut(pFH); 152 151 return rc; 152 } 153 153 #endif 154 }
Note:
See TracChangeset
for help on using the changeset viewer.