Rev 7115 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/*header file for the nlme packageCopyright 1999-2001 Saikat DebRoy,Douglas Bates <bates@stat.wisc.edu>Copyright 2007-2013 The R Core TeamThis file is part of the nlme package for S and related languagesand is made available under the terms of the GNU General PublicLicense, version 2, or at your option, any later version,incorporated herein by reference.This program is distributed in the hope that it will beuseful, but WITHOUT ANY WARRANTY; without even the impliedwarranty of MERCHANTABILITY or FITNESS FOR A PARTICULARPURPOSE. See the GNU General Public License for moredetails.You should have received a copy of the GNU General Public Licensealong with this program; if not, a copy is available athttp://www.r-project.org/Licenses/*/#ifndef NLME_BASE_H#define NLME_BASE_H#include <stdlib.h>#include <string.h> // for memcpy#include <R.h>#include <Rinternals.h>#include <Rmath.h>#ifdef ENABLE_NLS# include <libintl.h># define _(String) dgettext ("nlme", String)#else# define _(String) (String)#endif#define DNULLP (double *) 0extern double sqrt_eps;extern double xlower;#endif /* NLME_BASE_H */