Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/tools/build/cross-build/include/common/exterr.h
39566 views
1
#ifndef _EXTERR_H_
2
#define _EXTERR_H_
3
4
#include <sys/types.h>
5
6
static inline int
7
uexterr_gettext(char *buf, size_t bufsz)
8
{
9
if (bufsz > 0)
10
buf[0] = '\0';
11
return (0);
12
}
13
14
#endif
15
16