14 lines
344 B
C
14 lines
344 B
C
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
#ifndef _GNU_SOURCE
|
||
|
#define _GNU_SOURCE
|
||
|
#endif
|
||
|
#include <dirent.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
// expects non-NULL, arg3 is 'restrict' so "pointers" have to be different
|
||
|
return scandirat(/*dirfd=*/ 0, /*dirp=*/ (void *)1, /*namelist=*/ (void *)2, /*filter=*/ (void *)3, /*compar=*/ (void *)4);
|
||
|
}
|
||
|
|
||
|
#undef _GNU_SOURCE
|