source:
trunk/minix/commands/aal/wr_int2.c@
15
| Last change on this file since 15 was 9, checked in by , 15 years ago | |
|---|---|
| File size: 354 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | /* $Header: /cvsup/minix/src/commands/aal/wr_int2.c,v 1.1.1.1 2005/04/21 14:53:58 beng Exp $ */ |
| 2 | /* | |
| 3 | * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands. | |
| 4 | * See the copyright notice in the ACK home directory, in the file "Copyright". | |
| 5 | */ | |
| 6 | #include "object.h" | |
| 7 | ||
| 8 | wr_int2(fd, i) | |
| 9 | { | |
| 10 | char buf[2]; | |
| 11 | ||
| 12 | put2(i, buf); | |
| 13 | wr_bytes(fd, buf, 2L); | |
| 14 | } |
Note:
See TracBrowser
for help on using the repository browser.