-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnull_mthd.c
More file actions
executable file
·29 lines (27 loc) · 1.13 KB
/
null_mthd.c
File metadata and controls
executable file
·29 lines (27 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/****************************************************************************
* pgen_objects.h
* Author Joel Welling
* Copyright 1990, Pittsburgh Supercomputing Center, Carnegie Mellon University
*
* Permission use, copy, and modify this software and its documentation
* without fee for personal use or use within your organization is hereby
* granted, provided that the above copyright notice is preserved in all
* copies and that that copyright and this permission notice appear in
* supporting documentation. Permission to redistribute this software to
* other organizations or individuals is not granted; that must be
* negotiated with the PSC. Neither the PSC nor Carnegie Mellon
* University make any representations about the suitability of this
* software for any purpose. It is provided "as is" without express or
* implied warranty.
*****************************************************************************/
/*
This module provides a null method, for when no 'real' method is
available.
*/
#include "p3dgen.h"
#include "pgen_objects.h"
#include "ge_error.h"
void null_method( VOIDLIST )
{
ger_fatal("Null method called!");
}