c_src: update with new intern methods
[nit.git] / c_src / stream_nit.c
index c48e2ce..14bfece 100644 (file)
  * another product.
  */
 
-#include <unistd.h>
+#include "stream_nit.h"
 
 int stream_FDStream_FDStream_native_read_char_1(void *s, int fd) {
        int result;
        char buf;
        ssize_t r = read(fd, &buf, 1);
-       if (r == 0) 
+       if (r == 0)
                result = -1;
-       else 
+       else
                result = buf;
        return result;
 }
-
-void stream_FDStream_FDStream_write_char_1(void *s, int fd, int c) {
-       write(fd, &c, 1);
-}
-