File: newfstatat.S

package info (click to toggle)
dietlibc 0.34~cvs20160606-6
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 10,924 kB
  • sloc: ansic: 71,586; asm: 12,979; cpp: 1,860; makefile: 793; sh: 292; perl: 62
file content (13 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "syscalls.h"

#ifdef __NR_newfstatat
syscall(newfstatat,newfstatat)

#ifdef __NR_fstatat64
#  error __NR_newfstatat and __NR_fstatat64 must not both be defined
#endif

fstatat = newfstatat
.globl fstatat

#endif