add files for public distribution

based on internal repository 0a462b6 2017-11-22 14:41:39 +0100
This commit is contained in:
2017-11-22 14:55:20 +01:00
parent 96d206fc7b
commit bbd16d0f94
102 changed files with 230209 additions and 0 deletions

31
pmsco/loess/S.h Normal file
View File

@ -0,0 +1,31 @@
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <string.h>
#define Calloc(n,t) (t *)calloc((unsigned)(n),sizeof(t))
#define Free(p) free((char *)(p))
/* the mapping from f77 to C intermediate code -- may be machine dependent
* the first definition satisfies lint's narrowminded preprocessing & should
* stay the same for all implementations. The __STDC__ definition is for
* ANSI standard conforming C compilers. The #else definition should
* generate the version of the fortran subroutine & common block names x
* handed to the local loader; e.g., "x_" in system V, Berkeley & 9th edition
*/
#ifdef lint
#define F77_SUB(x) x
#define F77_COM(x) x
#else
#ifdef __STDC__
#define F77_SUB(x) x##_
#define F77_COM(x) x##_
#else
#define F77_SUB(x) x/**/_
#define F77_COM(x) x/**/_
#endif
#endif
#define NULL_ENTRY ((int *)NULL)