diff options
| author | Magnus Holmgren <magnushol@gmail.com> | 2010-08-26 15:48:11 +0000 |
|---|---|---|
| committer | Magnus Holmgren <magnushol@gmail.com> | 2010-08-26 15:48:11 +0000 |
| commit | 75a87e5e4c49d2a365c79c7de4c3f5dc9d957d46 (patch) | |
| tree | f2a96da3f4ae8db7ef43b43e3dc4e5a5cb7ca60c /apps/plugins | |
| parent | 1bf5777af2558ee2767616c29622e15625bde09b (diff) | |
| download | rockbox-75a87e5e4c49d2a365c79c7de4c3f5dc9d957d46.zip rockbox-75a87e5e4c49d2a365c79c7de4c3f5dc9d957d46.tar.gz rockbox-75a87e5e4c49d2a365c79c7de4c3f5dc9d957d46.tar.bz2 rockbox-75a87e5e4c49d2a365c79c7de4c3f5dc9d957d46.tar.xz | |
Oops, forgot this file in r27893.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27894 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/plugin_crt0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/plugin_crt0.c b/apps/plugins/plugin_crt0.c index ff117be..536ecca 100644 --- a/apps/plugins/plugin_crt0.c +++ b/apps/plugins/plugin_crt0.c @@ -37,7 +37,7 @@ static jmp_buf __exit_env; /* only 1 atexit handler for now, chain in the exit handler if you need more */ static void (*atexit_handler)(void); -int atexit(void (*fn)(void)) +int rb_atexit(void (*fn)(void)) { if (atexit_handler) return -1; |