aboutsummaryrefslogtreecommitdiffhomepage
path: root/util.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-20 22:11:05 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-20 22:11:05 -0700
commit261bf12c91286ffca9fcb0bf761d6d1666359dc7 (patch)
tree4b6d388843bad1aadae666fa8597c9f0d50488b0 /util.h
parentb08fb866378693d2e75f17fdfe5e60401a29136a (diff)
Lots of miscellaneous cleanup. Unified the path_get_cd_path, path_allocate_cd_path, etc. functions
Diffstat (limited to 'util.h')
-rw-r--r--util.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/util.h b/util.h
index 5326602f..4354d52d 100644
--- a/util.h
+++ b/util.h
@@ -27,21 +27,6 @@ typedef struct buffer
buffer_t;
/**
- Set the out-of-memory handler callback function. If a memory
- allocation fails, this function will be called.
-*/
-void (*util_set_oom_handler( void (*h)(void *) ))(void *);
-
-/**
- This is a possible out of memory handler that will kill the current
- process in response to any out of memory event, while also printing
- an error message describing what allocation failed.
-
- This is the default out of memory handler.
-*/
-void util_die_on_oom( void *p );
-
-/**
Returns the larger of two ints
*/
int maxi( int a, int b );