summary refs log tree commit diff
path: root/src/libstddjb/fd_copy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/fd_copy.c')
-rw-r--r--src/libstddjb/fd_copy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstddjb/fd_copy.c b/src/libstddjb/fd_copy.c
index b051eaf..80b887e 100644
--- a/src/libstddjb/fd_copy.c
+++ b/src/libstddjb/fd_copy.c
@@ -6,7 +6,7 @@
 
 int fd_copy (int to, int from)
 {
-  register int r ;
+  int r ;
   if (to == from) return (errno = EINVAL, -1) ;
   do
     r = dup2(from, to) ;