From 3f90b6e081d3e8769266d0c03f7bf62ec66216a8 Mon Sep 17 00:00:00 2001 From: Paul Levine Date: Tue, 19 May 2026 15:35:34 -0700 Subject: [PATCH] Delete C/projects/DALEC_CODE/AUX directory AUX is a reserved name in Microsoft filesystems (e.g., NTFS, FAT32, exFAT, etc.), so having a directory with this name can cause problems on Windows operating systems and other Microsoft services (such as OneDrive). None of the files in this directory are used anywhere in the CARDAMOM code base: std.c is a duplicate of the file in C/math_fun, oksofar.c is a duplicate of the file in C/auxi_fun, and WRITE_CFUN_FILE.c is not part of any other code. Therefore, this entire directory contains only legacy (dead) code, and can safely be deleted. This will not only prevent issues with Microsoft file systems, but will also make the codebase easier to maintain. --- C/projects/DALEC_CODE/AUX/WRITE_CFUN_FILE.c | 22 --------------------- C/projects/DALEC_CODE/AUX/oksofar.c | 7 ------- C/projects/DALEC_CODE/AUX/std.c | 18 ----------------- 3 files changed, 47 deletions(-) delete mode 100644 C/projects/DALEC_CODE/AUX/WRITE_CFUN_FILE.c delete mode 100644 C/projects/DALEC_CODE/AUX/oksofar.c delete mode 100644 C/projects/DALEC_CODE/AUX/std.c diff --git a/C/projects/DALEC_CODE/AUX/WRITE_CFUN_FILE.c b/C/projects/DALEC_CODE/AUX/WRITE_CFUN_FILE.c deleted file mode 100644 index 7c02d9d0..00000000 --- a/C/projects/DALEC_CODE/AUX/WRITE_CFUN_FILE.c +++ /dev/null @@ -1,22 +0,0 @@ -void WRITE_CFUN_FILE(char *site,double *CFUN, int N) - -{ - -char filename[]="CFUN_"; -strcat(filename,site); - -FILE *file; - -file=fopen(filename, "a+"); - -int n; -for (n=0;n