Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 #include <libaudit.h>
0003 
0004 extern int printf(const char *format, ...);
0005 
0006 int main(void)
0007 {
0008     printf("error message: %s\n", audit_errno_to_name(0));
0009 
0010     return audit_open();
0011 }