aboutsummaryrefslogtreecommitdiffstats
path: root/guts/tmpnam.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/tmpnam.c')
-rw-r--r--guts/tmpnam.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/guts/tmpnam.c b/guts/tmpnam.c
deleted file mode 100644
index 3fece57..0000000
--- a/guts/tmpnam.c
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Copyright (c) 2010 Wind River Systems; see
- * guts/COPYRIGHT for information.
- *
- * static char *
- * wrap_tmpnam(char *s) {
- * char * rc = NULL;
- */
-
- /* let gcc know we're ignoring this */
- (void) s;
- pseudo_diag("tmpnam() is so ludicrously insecure as to defy implementation.");
- errno = ENOMEM;
- rc = NULL;
-
-/* return rc;
- * }
- */