Fix typos in comments: s/it's/its/ and related corrections.
[libfirm] / include / libfirm / adt / gaussjordan.h
index f8457f0..cd87d91 100644 (file)
@@ -5,6 +5,8 @@
 #ifndef FIRM_ADT_GAUSSJORDAN_H
 #define FIRM_ADT_GAUSSJORDAN_H
 
+#include "../begin.h"
+
 /**
  * solves a system of linear equations and returns 0 if successful
  *
@@ -12,6 +14,8 @@
  * @param b       the result vector, will contain the result if successful
  * @param nsize   the size of the equation system
  */
-int firm_gaussjordansolve(double *A, double *b, int nsize);
+FIRM_API int firm_gaussjordansolve(double *A, double *b, int nsize);
+
+#include "../end.h"
 
 #endif