summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-09-08 02:05:57 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-09-08 02:09:51 +0200
commit58b7930167ecccbe138bbfc7c6c7f44f9dd09107 (patch)
tree6fe98a2ad6c7fe17ff48215f0cb32fb9031db5c4 /crawl-ref/source/libutil.h
parentf15db1b054f390612b74db98a4b15159f038ca56 (diff)
downloadcrawl-ref-58b7930167ecccbe138bbfc7c6c7f44f9dd09107.tar.gz
crawl-ref-58b7930167ecccbe138bbfc7c6c7f44f9dd09107.zip
Combine common parts of lib*.h
Having different prototypes for different ports without a good reason is bad. After unification, it's easier to have, for example, two ports at once.
Diffstat (limited to 'crawl-ref/source/libutil.h')
-rw-r--r--crawl-ref/source/libutil.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/crawl-ref/source/libutil.h b/crawl-ref/source/libutil.h
index 68b8876b0e..2016508357 100644
--- a/crawl-ref/source/libutil.h
+++ b/crawl-ref/source/libutil.h
@@ -203,12 +203,6 @@ inline bool testbits(uint64_t flags, uint64_t test)
return ((flags & test) == test);
}
-#ifndef USE_TILE
-coord_def cgettopleft(GotoRegion region = GOTO_CRT);
-coord_def cgetpos(GotoRegion region = GOTO_CRT);
-void cgotoxy(int x, int y, GotoRegion region = GOTO_CRT);
-GotoRegion get_cursor_region();
-#endif
coord_def cgetsize(GotoRegion region = GOTO_CRT);
void cscroll(int n, GotoRegion region);