mailing list of musl libc
 help / color / mirror / code / Atom feed
6d2fef859d03a36e2e31c263a2ed2feb111718fa blob 352 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
 
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
#ifndef _UAPI_LINUX_ALIGN_H
#define _UAPI_LINUX_ALIGN_H

#define __ALIGN_KERNEL(x, a)		__ALIGN_KERNEL_MASK(x, (typeof(x))(a) - 1)
#define __ALIGN_KERNEL_MASK(x, mask)	(((x) + (mask)) & ~(mask))

#define __KERNEL_DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))

#endif /* _UAPI_LINUX_ALIGN_H */
debug log:

solving 6d2fef859d03 ...
found 6d2fef859d03 in https://inbox.vuxu.org/musl/20201001211942.13336-1-petr.vorel@gmail.com/

applying [1/1] https://inbox.vuxu.org/musl/20201001211942.13336-1-petr.vorel@gmail.com/
diff --git a/include/uapi/linux/align.h b/include/uapi/linux/align.h
new file mode 100644
index 000000000000..6d2fef859d03

Checking patch include/uapi/linux/align.h...
Applied patch include/uapi/linux/align.h cleanly.

index at:
100644 6d2fef859d03a36e2e31c263a2ed2feb111718fa	include/uapi/linux/align.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).