1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/tests/coap/main.c
René Kijewski d46c7e00d4 tests: remove test_ prefix
Closes #1485.
2014-07-31 07:34:11 +02:00

24 lines
449 B
C

/*
* Copyright (C) 2014 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
* details.
*/
/**
* @file
* @brief Check if the libcoap package builds.
*
* @author Ludwig Ortmann <ludwig.ortmann@fu-berlin.de>
*
*/
#include <stdio.h>
int main(void)
{
printf("Libcoap compiled!");
return 0;
}