Apply clang-format to source tree
[alexxy/gromacs.git] / src / gromacs / gpu_utils / pmalloc_cuda.h
index 9297fb9ddc6fd785fb13041eb78b1fe74293703e..2f2d8827df08f62ad473669830f8a5ac9c4dc642 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * This file is part of the GROMACS molecular simulation package.
  *
- * Copyright (c) 2012,2013,2014,2015,2018, by the GROMACS development team, led by
+ * Copyright (c) 2012,2013,2014,2015,2018,2019, by the GROMACS development team, led by
  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
  * and including many others, as listed in the AUTHORS file in the
  * top-level source directory and at http://www.gromacs.org.
 ///@cond INTERNAL
 
 /*! \brief Allocates nbytes of page-locked memory. */
-void pmalloc(void **h_ptr, size_t nbytes);
+void pmalloc(void** h_ptr, size_t nbytes);
 
 /*! \brief Allocates nbytes of page-locked memory with write-combining. */
-void pmalloc_wc(void **h_ptr, size_t nbytes);
+void pmalloc_wc(void** h_ptr, size_t nbytes);
 
 /*! \brief Frees page locked memory allocated with pmalloc. */
-void pfree(void *h_ptr);
+void pfree(voidh_ptr);
 
 ///@endcond