Changeset 8b1e15ac in mainline for uspace/drv/test1/char.c
- Timestamp:
- 2011-02-11T22:26:36Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68414f4a
- Parents:
- 1b367b4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/test1/char.c
r1b367b4 r8b1e15ac 37 37 #include "test1.h" 38 38 39 static int impl_char_read( device_t *dev, char *buf, size_t count) {39 static int impl_char_read(function_t *fun, char *buf, size_t count) { 40 40 memset(buf, 0, count); 41 41 return count; 42 42 } 43 43 44 static int imp_char_write( device_t *dev, char *buf, size_t count) {44 static int imp_char_write(function_t *fun, char *buf, size_t count) { 45 45 return count; 46 46 }
Note:
See TracChangeset
for help on using the changeset viewer.