summaryrefslogtreecommitdiffstats
path: root/lib/adds.c
blob: 5d8c1537f201d0dbf0fb5942a1a99185865f00e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2023, Alejandro Colomar <alx@kernel.org>
// SPDX-License-Identifier: BSD-3-Clause


#include <config.h>

#include "adds.h"

#include <stddef.h>


extern inline long addsl2(long a, long b);
extern inline long addslN(size_t n, long addend[n]);

extern inline int cmpl(const void *p1, const void *p2);