mirror of
https://github.com/Neur0toxine/docker-golang-alpine.git
synced 2024-11-22 13:06:06 +03:00
10 lines
208 B
C
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;
|
||
|
}
|