File: readlink.c

package info (click to toggle)
cvs 2%3A1.12.13%2Breal-28%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,156 kB
  • sloc: ansic: 100,617; sh: 33,909; asm: 3,281; perl: 2,818; ada: 1,681; makefile: 1,605; yacc: 1,244; pascal: 1,082; cpp: 1,001; lisp: 35
file content (5 lines) | stat: -rw-r--r-- 127 bytes parent folder | download | duplicates (16)
1
2
3
4
5
int readlink(char *path, char *buf, int bufsiz)
{
  /* OpenVMS dosen't have symbolic links in the UNIX sense */
  return -1;
}