diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-30 13:56:32 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-30 13:56:32 +0000 |
commit | 812870a2e7a00211b0658ebe05e3cee2154c9790 (patch) | |
tree | 20aea5ff872aecd9e57fb18cb6a6e30e6c51ba54 /include | |
parent | dcbd350ccfe7eaa4feab038f97a382684f2adea9 (diff) | |
download | busybox-812870a2e7a00211b0658ebe05e3cee2154c9790.tar.gz |
remove stray semicolon
Diffstat (limited to 'include')
-rw-r--r-- | include/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/platform.h b/include/platform.h index 51934853b..57cff2c33 100644 --- a/include/platform.h +++ b/include/platform.h @@ -74,7 +74,7 @@ /* -fwhole-program makes all symbols local. The attribute externally_visible forces a symbol global. */ # if __GNUC_PREREQ (4,1) -# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") )); +# define EXTERNALLY_VISIBLE __attribute__(( visibility("default") )) //__attribute__ ((__externally_visible__)) # else # define EXTERNALLY_VISIBLE |