(root)/
strace-6.5/
tests/
munlockall.c
       1  /*
       2   * Copyright (c) 2016-2018 The strace developers.
       3   * All rights reserved.
       4   *
       5   * SPDX-License-Identifier: GPL-2.0-or-later
       6   */
       7  
       8  #include "tests.h"
       9  
      10  #include <stdio.h>
      11  #include <sys/mman.h>
      12  
      13  int
      14  main(void)
      15  {
      16  	printf("munlockall() = %s\n", sprintrc(munlockall()));
      17  
      18  	puts("+++ exited with 0 +++");
      19  	return 0;
      20  }