File: rmdir.c

package info (click to toggle)
cvs 2%3A1.12.13%2Breal-9
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,124 kB
  • sloc: ansic: 100,303; sh: 33,775; asm: 3,281; perl: 2,818; ada: 1,681; makefile: 1,581; yacc: 1,184; pascal: 1,082; cpp: 1,001; lisp: 35
file content (23 lines) | stat: -rw-r--r-- 423 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#ifndef __VMS_VER
#define __VMS_VER 0
#endif
#ifndef __DECC_VER
#define __DECC_VER 0
#endif

#if __VMS_VER < 70200000 || __DECC_VER < 50700000

#include <stdio.h>
#include <unixio.h>

int rmdir(path)
char *path;
{
  chmod(path, 0777);
  return remove(path);
}

#else  /*  __VMS_VER >= 70200000 && __DECC_VER >= 50700000  */
#pragma message disable EMPTYFILE
#endif  /*  __VMS_VER >= 70200000 && __DECC_VER >= 50700000  */