~arctic+fox/tundra-wolf/trunk

« back to all changes in this revision

Viewing changes to examples/books/nrc2ed/nrutil.h

  • Committer: Roel Sergeant
  • Date: 2020-06-17 18:04:13 UTC
  • Revision ID: rsergeant@panix.com-20200617180413-ycp32b8lio1mtty6
tundra-wolf: add a few more examples

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Source code for Numerical Recipes Utilities header
 
3
 *      from section 1.0 of Numerical Recipes in C, 2nd Edition
 
4
 *              by William H. Press, Saul A. Teukolsky, William T. Vetterling,
 
5
 *                 Brian P. Flannery
 
6
 *              ISBN: 0-521-43108-5
 
7
 */
 
8
 
 
9
#ifndef NR2ED_UTILS_H
 
10
#define NR2ED_UTILS_H
 
11
 
 
12
void nrerror (char * error_text);
 
13
 
 
14
#endif // NR2ED_UTILS_H
 
15