mailing list of musl libc
 help / color / mirror / code / Atom feed
c899abdbe057dc0082b24690ac30c52dad932fed blob 898 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
 
#include <unistd.h>
#include <stdio.h>
#include <errno.h>

size_t confstr(int name, char *buf, size_t len)
{
	const char *s = "";
	if (!name) {
		s = "/bin:/usr/bin";
	} else if ((name&~4U)!=1 && name-_CS_POSIX_V6_ILP32_OFF32_CFLAGS>33U) {
		errno = EINVAL;
		return 0;
	}

	if (name == _CS_POSIX_V7_WIDTH_RESTRICTED_ENVS ||
	    // Since sysconf _SC_V7_ILP32_OFF32 = -1
	    name == _CS_POSIX_V7_ILP32_OFF32_CFLAGS ||
	    name == _CS_POSIX_V7_ILP32_OFF32_LDFLAGS ||
	    name == _CS_POSIX_V7_ILP32_OFF32_LIBS ||
	    // Since sysconf _SC_V7_LPBIG_OFFBIG = -1
	    name == _CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS ||
	    name == _CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS ||
	    name == _CS_POSIX_V7_LPBIG_OFFBIG_LIBS) {
		return 0;
	}

	// snprintf is overkill but avoid wasting code size to implement
	// this completely useless function and its truncation semantics
	return snprintf(buf, len, "%s", s) + 1;
}
debug log:

solving c899abd ...
found c899abd in https://inbox.vuxu.org/musl/20170609052618.5875-3-awilfox@adelielinux.org/
found 02cb1aa in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 02cb1aa252dbb4c3362e17f9ed39f5d71c960989	src/conf/confstr.c

applying [1/1] https://inbox.vuxu.org/musl/20170609052618.5875-3-awilfox@adelielinux.org/
diff --git a/src/conf/confstr.c b/src/conf/confstr.c
index 02cb1aa..c899abd 100644

Checking patch src/conf/confstr.c...
Applied patch src/conf/confstr.c cleanly.

index at:
100644 c899abdbe057dc0082b24690ac30c52dad932fed	src/conf/confstr.c

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).