From 84597399525d99fe036ea93feedb7993f326de50 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 9 Jan 2019 20:30:51 +0100 Subject: Sort includes from local to standard and fix exposed issues This order is better because it ensures that headers can stand alone and include everything they need. Several missing includes were exposed by this, and are also fixed in this commit. --- plugins/eg-amp.lv2/amp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/eg-amp.lv2/amp.c') diff --git a/plugins/eg-amp.lv2/amp.c b/plugins/eg-amp.lv2/amp.c index 2c65cc4..c3ba279 100644 --- a/plugins/eg-amp.lv2/amp.c +++ b/plugins/eg-amp.lv2/amp.c @@ -15,11 +15,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** Include standard C headers */ -#include -#include -#include - /** LV2 headers are based on the URI of the specification they come from, so a consistent convention can be used even for unofficial extensions. The URI @@ -29,6 +24,11 @@ */ #include "lv2/core/lv2.h" +/** Include standard C headers */ +#include +#include +#include + /** The URI is the identifier for a plugin, and how the host associates this implementation in code with its description in data. In this plugin it is -- cgit v1.2.1