summary refs log tree commit diff stats
path: root/lib/system.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/system.nim')
-rw-r--r--lib/system.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/system.nim b/lib/system.nim
index 1e090cfbd..bb8254364 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -2694,11 +2694,6 @@ when not defined(JS): #and not defined(nimscript):
     proc endOfFile*(f: File): bool {.tags: [], benign.}
       ## Returns true iff `f` is at the end.
 
-    proc ioctl*(f: FileHandle, device: uint): int {.importc: "ioctl",
-      header: "<sys/ioctl.h>", varargs, tags: [WriteIOEffect].}
-      ## A system call for device-specific input/output operations and other
-      ## operations which cannot be expressed by regular system calls
-
     proc readChar*(f: File): char {.
       importc: "fgetc", header: "<stdio.h>", tags: [ReadIOEffect].}
       ## Reads a single character from the stream `f`.