fixed typos.

This commit is contained in:
leitner 2001-02-15 21:23:52 +00:00
parent 9bb30d2797
commit 2e578322c9
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#include "str.h"
#include "buffer.h"
int buffer_puts(buffer* b,const char* x) {
int buffer_putsalign(buffer* b,const char* x) {
return buffer_putalign(b,x,str_len(x));
}

View File

@ -1,6 +1,6 @@
#include "str.h"
#include "buffer.h"
int buffer_puts(buffer* b,const char* x) {
int buffer_putsflush(buffer* b,const char* x) {
return buffer_putflush(b,x,str_len(x));
}

View File

@ -7,6 +7,6 @@
#define O_NDELAY O_NONBLOCK
#endif
int ndelay_on(int fd) {
int ndelay_off(int fd) {
return fcntl(fd,F_SETFL,fcntl(fd,F_GETFL,0) & ~O_NDELAY);
}