diff options
| author | Peter Jones <pjones@redhat.com> | 2021-03-09 11:54:58 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2021-03-10 15:54:20 -0500 |
| commit | 766aac4d5cfbe76026be5ce718b0883ee211f323 (patch) | |
| tree | 56b15cac9a128b4285d58bc1e2a4b12cff5ed881 /include/system/strings.h | |
| parent | 78809820b5a3f79a0bfbec00e630e40011acf4ec (diff) | |
| download | efi-boot-shim-766aac4d5cfbe76026be5ce718b0883ee211f323.tar.gz efi-boot-shim-766aac4d5cfbe76026be5ce718b0883ee211f323.zip | |
Consolidate most of our standard lib functions to lib
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'include/system/strings.h')
| -rw-r--r-- | include/system/strings.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/system/strings.h b/include/system/strings.h index c82bd917..99bc05f2 100644 --- a/include/system/strings.h +++ b/include/system/strings.h @@ -5,6 +5,15 @@ #ifndef _STRINGS_H #define _STRINGS_H +#include <builtins_begin_.h> +mkbi1_(int, ffs, int, x) +mkbi1_(int, clz, int, x) +mkbi1_(int, ctz, int, x) +mkbi1_(int, clrsb, int, x) +mkbi1_(int, popcount, int, x) +mkbi1_(int, parity, int, x) +#include <builtins_end_.h> + #endif /* !_STRINGS_H */ #endif // vim:fenc=utf-8:tw=75:noet |
