mailing list of musl libc
 help / color / mirror / code / Atom feed
b7c6f85998dd23531219c97834f64dcd41e48e5a blob 1072 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
 
#ifndef _ERR_H
#define _ERR_H

#include <features.h>
#include <stdarg.h>

#ifdef __cplusplus
extern "C" {
#endif

void warn(const char *, ...)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 1, 2)))
#endif
;

void vwarn(const char *, va_list)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 1, 0)))
#endif
;

void warnx(const char *, ...)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 1, 2)))
#endif
;

void vwarnx(const char *, va_list)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 1, 0)))
#endif
;


_Noreturn void err(int, const char *, ...)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 2, 3)))
#endif
;

_Noreturn void verr(int, const char *, va_list)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 2, 0)))
#endif
;

_Noreturn void errx(int, const char *, ...)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 2, 3)))
#endif
;

_Noreturn void verrx(int, const char *, va_list)
#if __GNUC__ >= 3
__attribute__ ((__format__ (__printf__, 2, 0)))
#endif
;


#ifdef __cplusplus
}
#endif

#endif
debug log:

solving b7c6f85 ...
found b7c6f85 in https://inbox.vuxu.org/musl/1453581976-10098-1-git-send-email-hauke@hauke-m.de/
found 9f5cb6b in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 9f5cb6b9e9fad0ff255f2dd1b505cfcec4658d26	include/err.h

applying [1/1] https://inbox.vuxu.org/musl/1453581976-10098-1-git-send-email-hauke@hauke-m.de/
diff --git a/include/err.h b/include/err.h
index 9f5cb6b..b7c6f85 100644

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

index at:
100644 b7c6f85998dd23531219c97834f64dcd41e48e5a	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).