Commit ea40984c authored by Lucas Russo's avatar Lucas Russo

src/revision/revision.*: move revision.h file to include/

parent fef84284
...@@ -8,6 +8,10 @@ ...@@ -8,6 +8,10 @@
#ifndef _REVISION_ #ifndef _REVISION_
#define _REVISION_ #define _REVISION_
#ifdef __cplusplus
extern "C" {
#endif
extern const char *build_revision; extern const char *build_revision;
extern const char *build_date; extern const char *build_date;
extern const char *build_user_name; extern const char *build_user_name;
...@@ -41,4 +45,8 @@ char *revision_clone_build_user_email (void); ...@@ -41,4 +45,8 @@ char *revision_clone_build_user_email (void);
* on error and the number of copied bytes otherwise */ * on error and the number of copied bytes otherwise */
int revision_copy_build_user_email (char *dest, size_t size); int revision_copy_build_user_email (char *dest, size_t size);
#ifdef __cplusplus
}
#endif
#endif #endif
#include "hutils.h" /*
#include "revision.h" * Copyright (C) 2015 LNLS (www.lnls.br)
* Author: Lucas Russo <lucas.russo@lnls.br>
*
* Released according to the GNU LGPL, version 3 or any later version.
*/
#include "bpm_server.h"
const char *build_revision = GIT_REVISION; const char *build_revision = GIT_REVISION;
const char *build_date = __DATE__ " " __TIME__; const char *build_date = __DATE__ " " __TIME__;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment