mailing list of musl libc
 help / color / mirror / code / Atom feed
f4780588e9f2de416c2e2444c1f63c2baa8b748c blob 764 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
 
#ifndef _SYS_PARAM_H
#define _SYS_PARAM_H

#define MAXSYMLINKS 20
#define MAXHOSTNAMELEN 64
#define MAXNAMLEN 255
#define MAXPATHLEN 4096
#define NBBY 8
#define NGROUPS NGROUPS_MAX
#define CANBSIZ 255
#define NOFILE 256
#define NCARGS 131072
#define DEV_BSIZE 512
#define NOGROUP (-1)

#undef MIN
#undef MAX
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))

#define __bitop(x,i,o) ((x)[(i)/8] o (1<<(i)%8))
#define setbit(x,i) __bitop(x,i,|=)
#define clrbit(x,i) __bitop(x,i,&=~)
#define isset(x,i) __bitop(x,i,&)
#define isclr(x,i) !isset(x,i)

#define howmany(n,d) (((n)+((d)-1))/(d))
#define roundup(n,d) (howmany(n,d)*(d))
#define powerof2(n) !(((n)-1) & (n))

#include <sys/resource.h>
#include <endian.h>
#include <limits.h>

#endif
debug log:

solving f4780588 ...
found f4780588 in https://inbox.vuxu.org/musl/CCJ62H001O3G.3B0RTZILBT2PL@mussels/
found ce6b8019 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 ce6b801980c10bdd1a104a7250d13e59d809942d	include/sys/param.h

applying [1/1] https://inbox.vuxu.org/musl/CCJ62H001O3G.3B0RTZILBT2PL@mussels/
diff --git a/include/sys/param.h b/include/sys/param.h
index ce6b8019..f4780588 100644

Checking patch include/sys/param.h...
Applied patch include/sys/param.h cleanly.

index at:
100644 f4780588e9f2de416c2e2444c1f63c2baa8b748c	include/sys/param.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).