mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-24 22:04:13 +00:00
Estimated hours taken: 0.5 runtime/*: Remove some redundent declarations and add a comment or two.
20 lines
430 B
C
20 lines
430 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.
|
|
*/
|
|
|
|
#include "dummy.h"
|
|
|
|
/*
|
|
** This dummy function is in a file of its own to ensure
|
|
** that gcc can't inline it. Similarly for the two pointers.
|
|
*/
|
|
|
|
void *global_pointer;
|
|
void *global_pointer_2;
|
|
|
|
void dummy_function_call(void)
|
|
{
|
|
}
|