aboutsummaryrefslogtreecommitdiffstats
path: root/guts/fclose.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/fclose.c')
-rw-r--r--guts/fclose.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/guts/fclose.c b/guts/fclose.c
deleted file mode 100644
index 4469f5b..0000000
--- a/guts/fclose.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright (c) 2008-2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static int
- * wrap_fclose(FILE *fp) {
- * int rc = -1;
- */
-
- if (!fp) {
- errno = EFAULT;
- return -1;
- }
- int fd = fileno(fp);
- pseudo_client_op(OP_CLOSE, 0, fd, -1, 0, 0);
- rc = real_fclose(fp);
-
-/* return rc;
- * }
- */