Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Source files are moved into src subdirectory. #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 23, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Angled braces in #include statement were replaced by quotes.
  • Loading branch information
Vitaly Davydov committed Jun 21, 2023
commit fb6e62d3fac7039e80f29d5e93b62c179f960bb9
2 changes: 1 addition & 1 deletion src/epochprop.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Transformation: Rigorous Treatment'; cf.
*/

#include <math.h>
#include <pgs_util.h>
#include "pgs_util.h"

#include "point.h"
#include "epochprop.h"
Expand Down
4 changes: 2 additions & 2 deletions src/gnomo.c
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <postgres.h>
#include <fmgr.h>

#include <gnomo.h>
#include <point.h> /* SPoint from pgsphere */
#include "gnomo.h"
#include "point.h" /* SPoint from pgsphere */

#include <math.h>

Expand Down