aboutsummaryrefslogtreecommitdiff
path: root/src/auction/test_auction_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/auction/test_auction_api.c')
-rw-r--r--src/auction/test_auction_api.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/auction/test_auction_api.c b/src/auction/test_auction_api.c
index 56b2a8192..39a002a5f 100644
--- a/src/auction/test_auction_api.c
+++ b/src/auction/test_auction_api.c
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20/** 20/**
21 * @file auction/test_auction_api.c 21 * @file auction/test_auction_api.c
22 * @brief testcase for auction.c 22 * @brief testcase for auction.c
@@ -24,17 +24,17 @@
24#include "platform.h" 24#include "platform.h"
25 25
26static int 26static int
27check () 27check()
28{ 28{
29 return 0; 29 return 0;
30} 30}
31 31
32int 32int
33main (int argc, char *argv[]) 33main(int argc, char *argv[])
34{ 34{
35 int ret; 35 int ret;
36 36
37 ret = check (); 37 ret = check();
38 38
39 return ret; 39 return ret;
40} 40}