forked from LLNL/msr-safe
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes several missing-prototype warnings. (LLNL#165)
Compiling under Linux 6.9.9 and gcc 10.3.1. * Adds spack-install target to Makefile. * Addresses Stephanie's review comments Removes empty line at the end of the file. Adds empty lines around material within #define/#endif Adds line separating system and local #include statements. Removes duplicate #include Add separating line between system and local includes. Adds copyright info. Remove extra line --------- Co-authored-by: Barry <[email protected]> Co-authored-by: Stephanie Brink <[email protected]>
- Loading branch information
1 parent
207e27e
commit 465f56e
Showing
8 changed files
with
36 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Copyright 2011-2021 Lawrence Livermore National Security, LLC and other | ||
// msr-safe Project Developers. See the top-level COPYRIGHT file for | ||
// details. | ||
// | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
|
||
#ifndef MSR_SMP_INCLUDE | ||
#define MSR_SMP_INCLUDE | ||
|
||
int msr_safe_batch(struct msr_batch_array *oa); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters