mirror of
https://salsa.debian.org/dskoll/remind.git
synced 2026-04-17 06:48:47 +02:00
24 lines
1.1 KiB
C
24 lines
1.1 KiB
C
/***************************************************************/
|
|
/* */
|
|
/* GLOBALS.C */
|
|
/* */
|
|
/* This file simply instantiates all of the global variables. */
|
|
/* */
|
|
/* It does this by #defining MK_GLOBALS and #including */
|
|
/* globals.h and err.h */
|
|
/* */
|
|
/* This file is part of REMIND. */
|
|
/* Copyright (C) 1992-2026 by Dianne Skoll */
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/* */
|
|
/***************************************************************/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h> /* For definition of FILE - sigh! */
|
|
#include "types.h"
|
|
#include "custom.h"
|
|
#define MK_GLOBALS 1
|
|
#include "globals.h"
|
|
#include "err.h"
|