ossp-pkg/var/var.c 1.104 -> 1.105
--- var.c 2004/04/04 09:57:10 1.104
+++ var.c 2004/10/29 19:42:20 1.105
@@ -32,6 +32,7 @@
#include "config.h"
#endif
+/* required system headers */
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
@@ -44,11 +45,13 @@
#else
# include <regex.h>
#endif
-#include "var.h"
#if defined(HAVE_DMALLOC_H) && defined(WITH_DMALLOC)
-#include "dmalloc.h"
+#include <dmalloc.h>
#endif
+/* required internal headers */
+#include "var.h"
+
/* unique library identifier */
const char var_id[] = "OSSP var";
@@ -2719,7 +2722,7 @@
"formatting failure" /* VAR_ERR_FORMATTING_FAILURE */
};
-/* transslate a return code into its corresponding descriptive text */
+/* translate a return code into its corresponding descriptive text */
var_rc_t var_strerror(var_t *var, var_rc_t rc, char **str)
{
if (str == NULL)
|
|