*
* A wrapper for calloc(3) which exits on errors.
*
- * A pointer to the allocated and zeroed-out memory, which is suitably aligned
- * for any kind of variable.
+ * \return A pointer to the allocated and zeroed-out memory, which is suitably
+ * aligned for any kind of variable.
*
* \sa calloc(3)
*/
*
* \param s string to be duplicated
*
- * A wrapper for strdup(3). It calls exit(EXIT_FAILURE) on errors, i.e. there
- * is no need to check the return value in the caller.
+ * A wrapper for strdup(3). It calls \p exit(EXIT_FAILURE) on errors, i.e.
+ * there is no need to check the return value in the caller.
*
* \return A pointer to the duplicated string. If \p s was the NULL pointer,
* an pointer to an empty string is returned.