docker-golang-alpine/1.18-nofaccessat2/faccessat2-test.c

10 lines
208 B
C
Raw Normal View History

#include <unistd.h>
#include <fcntl.h>
int main() {
// TODO: Use this code to test resulting images.
// Should not call faccessat2 under the hood.
faccessat(0, "/", R_OK, AT_EACCESS);
return 0;
}