unix/fiss

lib/libfmt/errfmt.c in master
Repositories | Summary | Log | Files | LICENSE

errfmt.c (263B) download


 1/* Copyright (c) 2002-2006 Lucent Technologies; see LICENSE */
 2#include "fmt.h"
 3#include "fmtdef.h"
 4#include "plan9.h"
 5
 6#include <errno.h>
 7#include <stdarg.h>
 8#include <string.h>
 9
10int __errfmt(Fmt* f) {
11	char* s;
12
13	s = strerror(errno);
14	return fmtstrcpy(f, s);
15}