aboutsummaryrefslogtreecommitdiffhomepage
path: root/intern.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-01-23 20:02:15 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-01-23 20:02:15 -0800
commitfa569b32fb925353057f9c0342b7b50009ed38f0 (patch)
tree99a73b951d422605aef41bfb9a94104d7f418083 /intern.h
parent78f8317de8507dbd5957922619d657348351f08e (diff)
Made intern'd strings thread safe.
Removed intern_free_all().
Diffstat (limited to 'intern.h')
-rw-r--r--intern.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/intern.h b/intern.h
index 175a4b84..deef31e3 100644
--- a/intern.h
+++ b/intern.h
@@ -25,9 +25,4 @@ const wchar_t *intern( const wchar_t *in );
*/
const wchar_t *intern_static( const wchar_t *in );
-/**
- Free all interned strings. Only call this at shutdown.
-*/
-void intern_free_all();
-
#endif