• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1dnl SPDX-License-Identifier: GPL-2.0-or-later
2dnl Copyright (c) Cisco Systems Inc., 2009
3dnl Author: Ngie Cooper <yaneurabeya@gmail.com>
4
5AC_DEFUN([LTP_CHECK_PRCTL_SUPPORT],[
6AC_CHECK_HEADERS(sys/prctl.h,[
7	AC_CHECK_DECLS([PR_CAPBSET_DROP, PR_CAPBSET_READ], [],[],[
8#include <sys/prctl.h>
9]) dnl AC_CHECK_DECLS
10])]
11)
12