Make sure all functions are defined only once in the header file

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22647 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens
2012-12-14 13:07:32 +00:00
parent 8d32361ede
commit 2e8bd476b0
+2 -2
View File
@@ -143,8 +143,6 @@ gint gnc_process_get_fd(const Process *proc, const gint std_fd);
* @param kill_it If TRUE, kill the process. */
void gnc_detach_process(Process *proc, const gboolean kill_it);
#endif
/** Convert a time string to calendar time representation. Combine strptime and
* mktime into a single function to avoid the need to wrap struct tm *.
*
@@ -154,3 +152,5 @@ void gnc_detach_process(Process *proc, const gboolean kill_it);
*
* @return The time in seconds since unix epoch, or -1 on error */
time64 gnc_parse_time_to_time64 (const gchar *s, const gchar *format);
#endif