]> git.draconx.ca Git - cdecl99.git/blobdiff - src/error.c
Consolidate header files.
[cdecl99.git] / src / error.c
index 8d26d5b7c604db7b4ecde35ffd2985a51f327fb6..9b89bac15239c04b0cec366e05af44b103ec8e0d 100644 (file)
@@ -1,12 +1,30 @@
+/*
+ *  Error handling for libcdecl.
+ *  Copyright © 2011-2012, 2021 Nick Bowler
+ *
+ *  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
+ *  the Free Software Foundation, either version 3 of the License, or
+ *  (at your option) any later version.
+ *
+ *  This program is distributed in the hope that it will be useful,
+ *  but WITHOUT ANY WARRANTY; without even the implied warranty of
+ *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ *  GNU General Public License for more details.
+ *
+ *  You should have received a copy of the GNU General Public License
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <config.h>
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
 #include <glthread/lock.h>
 #include <glthread/tls.h>
+
 #include "cdecl.h"
-#include "error.h"
-#include "i18n.h"
+#include "cdecl-internal.h"
 
 gl_once_define(static, tls_initialized);
 static gl_tls_key_t tls_key;