This website works better with JavaScript.
Home
Help
Register
Sign In
mirrors
/
libowfat
mirror of
/home/gitosis/repositories/libowfat.git
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
fixed typos.
master
Felix von Leitner
20 years ago
parent
1aec9df28d
commit
f432739bd6
3 changed files
with
3 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
buffer/buffer_putsalign.c
+1
-1
buffer/buffer_putsflush.c
+1
-1
unix/ndelay_off.c
+ 1
- 1
buffer/buffer_putsalign.c
View File
@ -1,6 +1,6 @@
#
include
"str.h"
#
include
"buffer.h"
int
buffer_puts
(
buffer
*
b
,
const
char
*
x
)
{
int
buffer_puts
align
(
buffer
*
b
,
const
char
*
x
)
{
return
buffer_putalign
(
b
,
x
,
str_len
(
x
)
)
;
}
+ 1
- 1
buffer/buffer_putsflush.c
View File
@ -1,6 +1,6 @@
#
include
"str.h"
#
include
"buffer.h"
int
buffer_puts
(
buffer
*
b
,
const
char
*
x
)
{
int
buffer_puts
flush
(
buffer
*
b
,
const
char
*
x
)
{
return
buffer_putflush
(
b
,
x
,
str_len
(
x
)
)
;
}
+ 1
- 1
unix/ndelay_off.c
View File
@ -7,6 +7,6 @@
#
define O_NDELAY O_NONBLOCK
#
endif
int
ndelay_o
n
(
int
fd
)
{
int
ndelay_o
ff
(
int
fd
)
{
return
fcntl
(
fd
,
F_SETFL
,
fcntl
(
fd
,
F_GETFL
,
0
)
&
~
O_NDELAY
)
;
}
Write
Preview
Loading…
Cancel
Save