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
parent
f65a51c80c
commit
aa4d6abf99
|
@ -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:
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#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)
|
||||||
|
|
||||||
|
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue