mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 12:53:47 +00:00
Estimated hours taken: 0.5 runtime/*: Remove some redundent declarations and add a comment or two.
23 lines
503 B
C
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
|