mailing list of musl libc
 help / color / mirror / code / Atom feed
84494cfdd7e8530e17fe33f58d1f71ac7816a489 blob 586 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
#ifndef _ERR_H
#define _ERR_H

#include <stdarg.h>

#ifdef __cplusplus
extern "C" {
#endif

void warn(const char *, ...);
void vwarn(const char *, va_list);
void warnx(const char *, ...);
void vwarnx(const char *, va_list);

#if __STDC_VERSION__ >= 201112L
#elif defined(__GNUC__)
#define _Noreturn __attribute__((__noreturn__))
#else
#define _Noreturn
#endif

_Noreturn void err(int, const char *, ...);
_Noreturn void verr(int, const char *, va_list);
_Noreturn void errx(int, const char *, ...);
_Noreturn void verrx(int, const char *, va_list);

#ifdef __cplusplus
}
#endif

#endif
debug log:

solving 84494cf ...
found 84494cf in https://inbox.vuxu.org/musl/20120906191724.0be123b0@gmail.com/
found 5e33f9e in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 5e33f9e42e4508e2c6c53214e714388d73923471	include/err.h

applying [1/1] https://inbox.vuxu.org/musl/20120906191724.0be123b0@gmail.com/
diff --git a/include/err.h b/include/err.h
index 5e33f9e..84494cf 100644

Checking patch include/err.h...
Applied patch include/err.h cleanly.

index at:
100644 84494cfdd7e8530e17fe33f58d1f71ac7816a489	include/err.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).