add some includes for c header files (#221)

* add some includes for c header files

* Trim whitespace

Co-authored-by: Ryan Burns <rtburns-jpl@users.noreply.github.com>
LT1AB
Lijun Zhu 2021-01-13 15:13:59 -08:00 committed by GitHub
parent f65a51c80c
commit aa4d6abf99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 31 additions and 26 deletions

View File

@ -6,6 +6,7 @@
#include <sys/types.h> #include <sys/types.h>
#include <unistd.h> #include <unistd.h>
#include <string.h>
#define PERMS 0666 #define PERMS 0666
/* IO library: /* IO library:

View File

@ -2,6 +2,7 @@
#include <sys/time.h> #include <sys/time.h>
#include <sys/times.h> #include <sys/times.h>
#include <sys/resource.h> #include <sys/resource.h>
#include <stdio.h>
#if defined(NEEDS_F77_TRANSLATION) #if defined(NEEDS_F77_TRANSLATION)

View File

@ -1,3 +1,5 @@
void geolocate_(double *, double *, double *, double *, int *, double *, double *, double *, double *, double *);
// A wrapper for the Fortran geolocation code // A wrapper for the Fortran geolocation code
int geolocate_wrapper(double *pos, double *vel, double range, double squint, int side, double a, double e2, double *llh, double *lookAngle, double *incidenceAngle) int geolocate_wrapper(double *pos, double *vel, double range, double squint, int side, double a, double e2, double *llh, double *lookAngle, double *incidenceAngle)
{ {

View File

@ -41,6 +41,7 @@ here insofar as such code may exist in this Software.
#include <Xm/DrawnB.h> #include <Xm/DrawnB.h>
#include <Xm/ScrolledW.h> #include <Xm/ScrolledW.h>
#include <Xm/Label.h> #include <Xm/Label.h>
#include <Xm/ScrollBar.h>
#include <X11/cursorfont.h> #include <X11/cursorfont.h>
#include <X11/keysym.h> /* for popup window only */ #include <X11/keysym.h> /* for popup window only */