summaryrefslogtreecommitdiffstats
path: root/src/H5make_libsettings.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-09-18 18:22:48 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-09-18 18:22:48 (GMT)
commit6c78869c19a88edfd7b6a2a99a8fb8f5febf0b7a (patch)
tree163934950472dc003036456caa93de22bd22fba4 /src/H5make_libsettings.c
parent595b2d54ed34ee8b8502dbb162a2994f177b4a2c (diff)
downloadhdf5-6c78869c19a88edfd7b6a2a99a8fb8f5febf0b7a.zip
hdf5-6c78869c19a88edfd7b6a2a99a8fb8f5febf0b7a.tar.gz
hdf5-6c78869c19a88edfd7b6a2a99a8fb8f5febf0b7a.tar.bz2
Fix whitespace and exit status
Diffstat (limited to 'src/H5make_libsettings.c')
-rw-r--r--src/H5make_libsettings.c60
1 files changed, 24 insertions, 36 deletions
diff --git a/src/H5make_libsettings.c b/src/H5make_libsettings.c
index d803d07..d4caabb 100644
--- a/src/H5make_libsettings.c
+++ b/src/H5make_libsettings.c
@@ -26,11 +26,6 @@ static const char *FileHeader = "\n\
* help@hdfgroup.org. *\n\
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *";
/*
- *
- * Created: H5make_libsettings.c
- * 17 Mar 2010
- * Quincey Koziol
- *
* Purpose: Generate the H5libsettings.c file from the
* libhdf5.settings file.
*
@@ -45,17 +40,15 @@ static const char *FileHeader = "\n\
FILE *rawoutstream = NULL;
-
/*-------------------------------------------------------------------------
- * Function: insert_libhdf5_settings
- *
- * Purpose: insert the contents of libhdf5.settings into a file
- * represented by flibinfo.
- * Make it an empty string if H5_HAVE_EMBEDDED_LIBINFO is not
- * defined, i.e., not enabled.
+ * Function: insert_libhdf5_settings
*
- * Return: void
+ * Purpose: insert the contents of libhdf5.settings into a file
+ * represented by flibinfo.
+ * Make it an empty string if H5_HAVE_EMBEDDED_LIBINFO is not
+ * defined, i.e., not enabled.
*
+ * Return: void
*-------------------------------------------------------------------------
*/
static void
@@ -68,7 +61,7 @@ insert_libhdf5_settings(FILE *flibinfo)
if(NULL == (fsettings = HDfopen(LIBSETTINGSFNAME, "r"))) {
HDperror(LIBSETTINGSFNAME);
- HDexit(1);
+ HDexit(EXIT_FAILURE);
} /* end if */
/* print variable definition and the string */
@@ -98,11 +91,11 @@ insert_libhdf5_settings(FILE *flibinfo)
} /* end if */
else {
fprintf(stderr, "Read errors encountered with %s\n", LIBSETTINGSFNAME);
- HDexit(1);
+ HDexit(EXIT_FAILURE);
} /* end else */
if(0 != HDfclose(fsettings)) {
HDperror(LIBSETTINGSFNAME);
- HDexit(1);
+ HDexit(EXIT_FAILURE);
} /* end if */
#else
/* print variable definition and an empty string */
@@ -113,14 +106,13 @@ insert_libhdf5_settings(FILE *flibinfo)
/*-------------------------------------------------------------------------
- * Function: make_libinfo
+ * Function: make_libinfo
*
- * Purpose: Create the embedded library information definition.
- * This sets up for a potential extension that the declaration
- * is printed to a file different from stdout.
- *
- * Return: void
+ * Purpose: Create the embedded library information definition.
+ * This sets up for a potential extension that the declaration
+ * is printed to a file different from stdout.
*
+ * Return: void
*-------------------------------------------------------------------------
*/
static void
@@ -132,12 +124,11 @@ make_libinfo(void)
/*-------------------------------------------------------------------------
- * Function: print_header
- *
- * Purpose: Prints the header for the generated file.
+ * Function: print_header
*
- * Return: void
+ * Purpose: Prints the header for the generated file.
*
+ * Return: void
*-------------------------------------------------------------------------
*/
static void
@@ -239,12 +230,11 @@ information about the library build configuration\n";
/*-------------------------------------------------------------------------
- * Function: print_footer
+ * Function: print_footer
*
- * Purpose: Prints the file footer for the generated file.
- *
- * Return: void
+ * Purpose: Prints the file footer for the generated file.
*
+ * Return: void
*-------------------------------------------------------------------------
*/
static void
@@ -255,13 +245,11 @@ print_footer(void)
/*-------------------------------------------------------------------------
- * Function: main
- *
- * Purpose: Main entry point.
+ * Function: main
*
- * Return: Success: exit(0)
- * Failure: exit(1)
+ * Purpose: Main entry point.
*
+ * Return: Success: 0
*-------------------------------------------------------------------------
*/
int
@@ -298,5 +286,5 @@ main(int argc, char *argv[])
rawoutstream = NULL;
}
- HDexit(0);
+ HDexit(EXIT_SUCCESS);
}