summaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2019-01-14 17:29:50 -0800
committerGitHub <noreply@github.com>2019-01-14 17:29:50 -0800
commitb29d07ac62a9e7df427ab71a789cfcc96de9f4db (patch)
tree7d0c769098f5b69dd80b24c8a831d7255d70a71c /src/utils.h
parentccb7019c8b014b907d88bbcfb802b7f1458383b6 (diff)
parent88fd3a38b9456998c59dd49bb225504156274c83 (diff)
downloadledger-b29d07ac62a9e7df427ab71a789cfcc96de9f4db.tar.gz
ledger-b29d07ac62a9e7df427ab71a789cfcc96de9f4db.tar.bz2
ledger-b29d07ac62a9e7df427ab71a789cfcc96de9f4db.zip
Merge branch 'next' into move-have-edit
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/utils.h b/src/utils.h
index 857b8289..c9146dd7 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2003-2018, John Wiegley. All rights reserved.
+ * Copyright (c) 2003-2019, John Wiegley. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -500,10 +500,6 @@ inline T& downcast(U& object) {
path resolve_path(const path& pathname);
-#ifdef HAVE_REALPATH
-extern "C" char * realpath(const char *, char resolved_path[]);
-#endif
-
inline const string& either_or(const string& first,
const string& second) {
return first.empty() ? second : first;