Files
mercury/runtime/dummy.h
Fergus Henderson 9f0b3b9077 Remove some redundent declarations and add a comment or two.
Estimated hours taken: 0.5

runtime/*:
	Remove some redundent declarations and add a comment or two.
1995-12-28 03:58:38 +00:00

23 lines
503 B
C

/*
** Copyright (C) 1995 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.
*/
/*
** File: dummy.h
** Author: fjh
**
** Global variables and functions used purely for the purpose
** of suppressing over-zealous compiler optimizations.
*/
#ifndef DUMMY_H
#define DUMMY_H
extern void dummy_function_call(void);
extern void *global_pointer;
extern void *global_pointer_2;
#endif