source: proiecte/pmake3d/make3d_original/Make3dSingleImageStanford_version0.1/third_party/vrippack-0.31/src/march/fatal.cc @ 37

Last change on this file since 37 was 37, checked in by (none), 14 years ago

Added original make3d

File size: 881 bytes
Line 
1/*
2Name:         fatal.c
3
4Coded:        Paul Ning
5
6Modified by:  Brian Curless
7              Computer Graphics Laboratory
8              Stanford University
9
10Comment:      Fatal exit from program
11
12Copyright (1997) The Board of Trustees of the Leland Stanford Junior
13University. Except for commercial resale, lease, license or other
14commercial transactions, permission is hereby given to use, copy,
15modify this software for academic purposes only.  No part of this
16software or any derivatives thereof may be used in the production of
17computer models for resale or for use in a commercial
18product. STANFORD MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND
19CONCERNING THIS SOFTWARE.  No support is implied or provided.
20
21*/
22 
23
24#include <stdio.h>
25#include <unistd.h>
26#include "mc.h"
27
28void 
29Fatal(char *message)
30{
31  printf("%s\n", message);
32  fflush(stdout);
33  exit(-1);
34}  /* Fatal */
Note: See TracBrowser for help on using the repository browser.