docker-golang-alpine/1.22-nofaccessat2/faccessat2-test.c
2024-02-14 09:42:54 +03:00

10 lines
208 B
C

#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;
}