This commit is contained in:
2025-03-12 12:37:19 +03:00
committed by Dudarenko
parent 0c9f0664fd
commit d4fb323f86
428 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
/* debug.c,v 1.1.1.2 1992/07/10 02:42:51 davew Exp */
#include "include/portable.h"
#include <stdio.h>
#include "include/debug.h"
#include "include/missing.h"
int n_strange_occurances = 0;
FILE *debug2;
void strange_occurance(char *message)
{
n_strange_occurances++;
fprintf(debug2, message);
}