libowfat/buffer/buffer_puterror.c
leitner 63e070c1cb add long long buffer routines
add tai64 and tai6464 typedefs
add error message buffer routines
add io timeout routines
2003-09-05 21:09:14 +00:00

8 lines
136 B
C

#include "buffer.h"
#include <string.h>
#include <errno.h>
int buffer_puterror(buffer* b) {
return buffer_puts(b,strerror(errno));
}