summaryrefslogtreecommitdiff
path: root/neural.c
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2008-11-13 22:07:24 +0000
committerMatt Turner <mattst88@gmail.com>2008-11-13 22:07:24 +0000
commit8a9fd3f93bb3db2d969126913eedab023dba013f (patch)
tree5cd76353b5ec3e8be5c1062c0294e9b402a71487 /neural.c
parent9631ec05f6ddc60b231e5fad280e5a5242c5bab3 (diff)
Remove AllocateMemory, FreeMemory, MoveMemory, ErrorExit, and ReportError functions
git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@17 0d43b9a7-5ab2-4d7b-af9d-f64450cef757
Diffstat (limited to 'neural.c')
-rw-r--r--neural.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/neural.c b/neural.c
index 7ce58c5..e8c75f8 100644
--- a/neural.c
+++ b/neural.c
@@ -146,8 +146,9 @@ randnum((int32_t)3);
** only once here at the beginning. These values don't
** change once loaded.
*/
-if(read_data_file()!=0)
- ErrorExit();
+if(read_data_file()!=0) {
+ exit(1);
+}
/*