1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/pkg_libcoap/main.c

24 lines
454 B
C
Raw Normal View History

2014-07-15 17:12:05 +02:00
/*
* Copyright (C) 2014 Freie Universität Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
2014-07-15 17:12:05 +02:00
*/
/**
* @file
* @brief Check if the libcoap package builds.
*
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
2014-07-15 17:12:05 +02:00
*
*/
#include <stdio.h>
int main(void)
{
puts("Libcoap compiled!");
2014-07-15 17:12:05 +02:00
return 0;
}