diff options
Diffstat (limited to 'src/utils/strprintf.cpp')
-rw-r--r-- | src/utils/strprintf.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/utils/strprintf.cpp b/src/utils/strprintf.cpp index f90e6258..d960bc96 100644 --- a/src/utils/strprintf.cpp +++ b/src/utils/strprintf.cpp @@ -1,9 +1,8 @@ /* - * Aethyra + * The Mana World * Copyright (C) 2007 The Mana World Development Team * - * This file is part of Aethyra based on original code - * from The Mana World. + * This file is part of The Mana World. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,11 +19,11 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include "utils/strprintf.h" + #include <cstdarg> #include <cstdio> -#include "strprintf.h" - std::string strprintf(char const *format, ...) { char buf[256]; @@ -46,4 +45,3 @@ std::string strprintf(char const *format, ...) delete [] buf2; return res; } - |