mirror of
https://gitlab.com/apparmor/apparmor
synced 2025-08-31 06:16:03 +00:00
The macros __BEGIN_DECLS and __END_DECLS are not conforming to any standard, but are a custom extension of the glibc library. As such, it may not be available in other libc implementations, with one example being musl libc. So compiling libapparmor won't work with a strictly standards-conforming library. These macros are typically used for header files which might be included in a C++ project. Depending on whether the header is seen by a C or C++ compiler, it will hint that functions have C linkage. The macros themselves are rather simple: #ifdef __cplusplus # define __BEGIN_DECLS extern "C" { # define __END_DECLS } #else # define __BEGIN_DECLS # define __END_DECLS #endif To fix compilation with musl libc, simply expand those macros to explicitly use `extern "C"`. This is already used in other parts of apparmor and should thus be safe to use. Signed-off-by: Patrick Steinhardt <ps@pks.im>
43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/*
|
|
* Copyright 2014 Canonical Ltd.
|
|
*
|
|
* The libapparmor library is licensed under the terms of the GNU
|
|
* Lesser General Public License, version 2.1. Please see the file
|
|
* COPYING.LGPL.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _SYS_APPARMOR_PRIVATE_H
|
|
#define _SYS_APPARMOR_PRIVATE_H 1
|
|
|
|
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int _aa_is_blacklisted(const char *name);
|
|
|
|
void _aa_autofree(void *p);
|
|
void _aa_autoclose(int *fd);
|
|
void _aa_autofclose(FILE **f);
|
|
|
|
int _aa_asprintf(char **strp, const char *fmt, ...);
|
|
|
|
int _aa_dirat_for_each(int dirfd, const char *name, void *data,
|
|
int (* cb)(int, const char *, struct stat *, void *));
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* sys/apparmor_private.h */
|