Files
mercury/runtime/mercury_spinlock.c
Tyson Dowd bd19208eb9 Remove old .h files.
Estimated hours taken: 1

runtime/*.h:
runtime/*.c:
runtime/mercury_conf.h.in:
	Remove old .h files.
	Update #includes to refer to mercury_*.h
	Update #ifdef MODULE_H to be #ifdef MERCURY_MODULE_H
1997-11-23 07:21:53 +00:00

25 lines
494 B
C

/*
** Copyright (C) 1997 The University of Melbourne.
** This file may only be copied under the terms of the GNU Library General
** Public License - see the file COPYING.LIB in the Mercury distribution.
*/
/*
** spinlock.c - defines the code for locking and unlocking spin locks.
*/
#include "mercury_imp.h"
#include "mercury_spinlock.h"
void
do_spinlock(Word *l)
{
fatal_error("do_spinlock unimplemented");
}
void
do_spinunlock(Word *l)
{
fatal_error("do_spinunlock unimplemented");
}