From 50bb5d132f7ef03bbd5ec2f6bc3dffe512e0220e Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 6 Jan 2014 16:00:07 -0800 Subject: [PATCH] Migrate to guac_* namespace. --- src/common/Makefile.am | 8 ++++---- src/common/{io.c => guac_io.c} | 2 +- src/common/{io.h => guac_io.h} | 0 src/common/{list.c => guac_list.c} | 2 +- src/common/{list.h => guac_list.h} | 0 5 files changed, 6 insertions(+), 6 deletions(-) rename src/common/{io.c => guac_io.c} (98%) rename src/common/{io.h => guac_io.h} (100%) rename src/common/{list.c => guac_list.c} (99%) rename src/common/{list.h => guac_list.h} (100%) diff --git a/src/common/Makefile.am b/src/common/Makefile.am index 5a6cefd4..17782316 100644 --- a/src/common/Makefile.am +++ b/src/common/Makefile.am @@ -27,10 +27,10 @@ AM_CFLAGS = -Werror -Wall -pedantic noinst_LTLIBRARIES = libguac_common.la noinst_HEADERS = \ - io.h \ - list.h + guac_io.h \ + guac_list.h libguac_common_la_SOURCES = \ - io.c \ - list.c + guac_io.c \ + guac_list.c diff --git a/src/common/io.c b/src/common/guac_io.c similarity index 98% rename from src/common/io.c rename to src/common/guac_io.c index 3efeee7a..b4c87d64 100644 --- a/src/common/io.c +++ b/src/common/guac_io.c @@ -21,7 +21,7 @@ */ #include "config.h" -#include "io.h" +#include "guac_io.h" #include diff --git a/src/common/io.h b/src/common/guac_io.h similarity index 100% rename from src/common/io.h rename to src/common/guac_io.h diff --git a/src/common/list.c b/src/common/guac_list.c similarity index 99% rename from src/common/list.c rename to src/common/guac_list.c index 7060f5e7..517c9ec2 100644 --- a/src/common/list.c +++ b/src/common/guac_list.c @@ -21,7 +21,7 @@ */ #include "config.h" -#include "list.h" +#include "guac_list.h" #include #include diff --git a/src/common/list.h b/src/common/guac_list.h similarity index 100% rename from src/common/list.h rename to src/common/guac_list.h