aboutsummaryrefslogtreecommitdiffstats
path: root/guts/__fxstat.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/__fxstat.c')
-rw-r--r--guts/__fxstat.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/guts/__fxstat.c b/guts/__fxstat.c
deleted file mode 100644
index db9716b..0000000
--- a/guts/__fxstat.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright (c) 2008-2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * int
- * wrap___fxstat(int ver, int fd, struct stat *buf) {
- * int rc = -1;
- */
-
- struct stat64 buf64;
- /* populate buffer with complete data */
- real___fxstat(ver, fd, buf);
- /* obtain fake data */
- rc = wrap___fxstat64(ver, fd, &buf64);
- /* overwrite */
- pseudo_stat32_from64(buf, &buf64);
-
-/* return rc;
- * }
- */