Skip to content
Snippets Groups Projects
Commit 4e6790a2 authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Declare internal routine as static.

* This allows inlining, which the compiler must not use for
  extern functions.
parent 80853d6c
No related branches found
No related tags found
1 merge request!5Intentional change
......@@ -309,7 +309,7 @@ compareJulianDay(struct _julianday* jd1, struct _julianday* jd2)
/*Internal function.*/
/* Return jd1 >= jd2 */
bool
static bool
internal_compareJulianDay(struct _julianday* jd1, struct _julianday* jd2)
{
if (jd1->day > jd2->day)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment