test-libaudit.c 202 B

1234567891011
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <libaudit.h>
  3. extern int printf(const char *format, ...);
  4. int main(void)
  5. {
  6. printf("error message: %s\n", audit_errno_to_name(0));
  7. return audit_open();
  8. }