whitespace fixes. no code changes
[platform/upstream/busybox.git] / runit / runit_lib.h
index c644f5b..c94e61c 100644 (file)
@@ -25,9 +25,11 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
-extern unsigned byte_chr(char *s,unsigned n,int c);
+#if __GNUC_PREREQ(4,1)
+# pragma GCC visibility push(hidden)
+#endif
 
-extern int coe(int);
+extern unsigned byte_chr(char *s,unsigned n,int c);
 
 #define direntry struct dirent
 
@@ -97,3 +99,7 @@ typedef struct svstatus_t {
 struct ERR_svstatus_must_be_20_bytes {
        char ERR_svstatus_must_be_20_bytes[sizeof(svstatus_t) == 20 ? 1 : -1];
 };
+
+#if __GNUC_PREREQ(4,1)
+# pragma GCC visibility pop
+#endif