From 011274515c545bc3f728078fe85795f783827378 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Sat, 6 Sep 2008 13:56:08 -0400 Subject: [PATCH] Move selector code from src/lib/global to src/lib/common Future virtual selectors will need to access game state. This depends on common/file.c, which can't be used from global without creating a cyclic dependency between libglobal.a and libcommon.a. Move nsc.c to src/lib/common. file.c depends on it, so move it as well, renamed to filetable.c so it doesn't clash with the existing file.c. --- src/lib/{global/file.c => common/filetable.c} | 0 src/lib/{global => common}/nsc.c | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename src/lib/{global/file.c => common/filetable.c} (100%) rename src/lib/{global => common}/nsc.c (100%) diff --git a/src/lib/global/file.c b/src/lib/common/filetable.c similarity index 100% rename from src/lib/global/file.c rename to src/lib/common/filetable.c diff --git a/src/lib/global/nsc.c b/src/lib/common/nsc.c similarity index 100% rename from src/lib/global/nsc.c rename to src/lib/common/nsc.c