From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id EF07C207E4 for ; Wed, 26 Apr 2017 03:00:11 +0000 (UTC) From: Eric Wong To: raindrops-public@bogomips.org Subject: [PATCH] tcp_info: remove unnecessary extconf.h include Date: Wed, 26 Apr 2017 03:00:11 +0000 Message-Id: <20170426030011.7789-1-e@80x24.org> List-Id: ruby.h already pulls in extconf.h and has done so since Ruby 1.8. --- ext/raindrops/tcp_info.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ext/raindrops/tcp_info.c b/ext/raindrops/tcp_info.c index 42d013b..b82f705 100644 --- a/ext/raindrops/tcp_info.c +++ b/ext/raindrops/tcp_info.c @@ -1,5 +1,4 @@ #include -#include "extconf.h" #include #include #if defined(HAVE_LINUX_TCP_H) -- EW