aboutsummaryrefslogtreecommitdiff
path: root/src/core/platform.h
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2018-05-30 14:12:16 -0700
committerGarrett D'Amore <garrett@damore.org>2018-05-30 14:12:16 -0700
commitb2338c1a6d1e57f01396a8e77c65734cb2f0ae17 (patch)
treef7ca90cff42143f8f4e74693b0d739b8621d9efc /src/core/platform.h
parentd11d2acb55d6c5cdc02281346c394aef42a4fbc1 (diff)
downloadnng-b2338c1a6d1e57f01396a8e77c65734cb2f0ae17.tar.gz
nng-b2338c1a6d1e57f01396a8e77c65734cb2f0ae17.tar.bz2
nng-b2338c1a6d1e57f01396a8e77c65734cb2f0ae17.zip
fixes #499 Eliminate the unused nni_plat_home_dir...
Diffstat (limited to 'src/core/platform.h')
-rw-r--r--src/core/platform.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/platform.h b/src/core/platform.h
index bdc74349..07bfc14c 100644
--- a/src/core/platform.h
+++ b/src/core/platform.h
@@ -523,12 +523,6 @@ extern int nni_plat_dir_remove(const char *);
// The result should be freed with nni_strfree().
extern char *nni_plat_temp_dir(void);
-// nni_plat_home_dir returns the "home" directory for the user running the
-// application. This is a convenient place to store preferences, etc.
-// Applications should append an application specific directory name.
-// The result should be freed with nni_strfree().
-extern char *nni_plat_home_dir(void);
-
// nni_plat_join_dir joins to path components to make a path name.
// For example. on UNIX systems nni_plat_join_dir("/tmp", "a") returns
// "/tmp/a". The pathname returned should be freed with nni_strfree().