Blame libs/gst/check/libcheck/libcompat/alarm.c

Packit a6ee4b
/*
Packit a6ee4b
 * Check: a unit test framework for C
Packit a6ee4b
 * Copyright (C) 2001, 2002 Arien Malec
Packit a6ee4b
 *
Packit a6ee4b
 * This library is free software; you can redistribute it and/or
Packit a6ee4b
 * modify it under the terms of the GNU Lesser General Public
Packit a6ee4b
 * License as published by the Free Software Foundation; either
Packit a6ee4b
 * version 2.1 of the License, or (at your option) any later version.
Packit a6ee4b
 *
Packit a6ee4b
 * This library is distributed in the hope that it will be useful,
Packit a6ee4b
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a6ee4b
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a6ee4b
 * Lesser General Public License for more details.
Packit a6ee4b
 *
Packit a6ee4b
 * You should have received a copy of the GNU Lesser General Public
Packit a6ee4b
 * License along with this library; if not, write to the
Packit a6ee4b
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
Packit a6ee4b
 * MA 02110-1301, USA.
Packit a6ee4b
 */
Packit a6ee4b
Packit a6ee4b
#include "libcompat.h"
Packit a6ee4b
Packit a6ee4b
unsigned int
Packit a6ee4b
alarm (unsigned int seconds CK_ATTRIBUTE_UNUSED)
Packit a6ee4b
{
Packit a6ee4b
  assert (0);
Packit a6ee4b
  return 0;
Packit a6ee4b
}