summaryrefslogtreecommitdiff
path: root/src/ratpoison.h
diff options
context:
space:
mode:
authorrcyeske <rcyeske>2001-03-02 06:06:23 +0000
committerrcyeske <rcyeske>2001-03-02 06:06:23 +0000
commit46d33884f2f1061ae1a77c26928f97d573e57c6c (patch)
tree39c8a9fe54a29d761a797cc9124f945ded2ecc3c /src/ratpoison.h
parent58e95be4eab6d82257214d76414c9eef901c5915 (diff)
downloadratpoison-46d33884f2f1061ae1a77c26928f97d573e57c6c.zip
* ratpoison.h (xmalloc, xrealloc, fatal): Prototype.
* main.c (xmalloc): Move here from sbuf.c. (xrealloc): Likewise. (fatal): Likewise. * number.c (find_empty_cell): Use xrealloc, remove error check. (init_numbers): Likewise. * manage.c (get_window_name): Likewise. * main.c (main): Likewise. * list.c (add_to_window_list): Likewise. (add_to_window_list): Likewise. * events.c (handle_key): Likewise. * input.c (keysym_to_string): Likewise. (get_more_input): Use xrealloc, remove error check. * main.c (read_rc_file): Take a file pointer rather than a filename. (read_startup_files): If ~/.ratpoisonrc is not readable try /etc/ratpoisonrc.
Diffstat (limited to 'src/ratpoison.h')
-rw-r--r--src/ratpoison.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ratpoison.h b/src/ratpoison.h
index 3a06d5e..bb8ef41 100644
--- a/src/ratpoison.h
+++ b/src/ratpoison.h
@@ -63,4 +63,8 @@ screen_info *find_screen (Window w);
void read_rc_file (FILE *file);
+void fatal (const char *msg);
+void *xmalloc (size_t size);
+void *xrealloc (void *ptr, size_t size);
+
#endif /* ! _RATPOISON_H */