/*
   This header file provides the interface used by other packages,
   and should be included once per package.
*/

#ifndef _r_c_api_zigg_h_
#define _r_c_api_zigg_h_

#include <R.h>
#include <Rinternals.h>

SEXP zrnorm(SEXP n);
SEXP zrexp(SEXP n);
SEXP zrunif(SEXP n);
SEXP zsetseed(SEXP n);

#endif /* _r_c_api_zigg_h_ */
