mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-02-05 17:55:20 +01:00
12 lines
326 B
C
12 lines
326 B
C
/* SPDX-License-Identifier: Zlib */
|
|
|
|
#ifndef ZATHURA_SECCOMP_FILTERS_H
|
|
#define ZATHURA_SECCOMP_FILTERS_H
|
|
|
|
#include "zathura.h"
|
|
|
|
/* strict filter before document parsing */
|
|
/* this filter is to be enabled after most of the initialisation of zathura has finished */
|
|
int seccomp_enable_strict_filter(zathura_t* zathura);
|
|
|
|
#endif
|