Index: tests/include/.expect/includes.nast.txt
===================================================================
--- tests/include/.expect/includes.nast.txt	(revision a41e87b7c8399f5b44d2a1543d9b302e737a214c)
+++ tests/include/.expect/includes.nast.txt	(revision 12c1eeff7e4358f66eb036d8fd54ae6257c2472c)
@@ -1,2 +1,1 @@
-include/includes.cfa: In function '_X4mainFi_iPPKc__1':
-include/includes.cfa:156:9: note: #pragma message: Compiled
+include/includes.cfa:154:25: warning: Compiled
Index: tests/include/.expect/stdincludes.txt
===================================================================
--- tests/include/.expect/stdincludes.txt	(revision 12c1eeff7e4358f66eb036d8fd54ae6257c2472c)
+++ tests/include/.expect/stdincludes.txt	(revision 12c1eeff7e4358f66eb036d8fd54ae6257c2472c)
@@ -0,0 +1,1 @@
+include/stdincludes.cfa:50:25: warning: Compiled
Index: tests/include/includes.cfa
===================================================================
--- tests/include/includes.cfa	(revision a41e87b7c8399f5b44d2a1543d9b302e737a214c)
+++ tests/include/includes.cfa	(revision 12c1eeff7e4358f66eb036d8fd54ae6257c2472c)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Mar 25 09:08:26 2021
-// Update Count     : 750
+// Last Modified On : Sat Jun  5 10:06:46 2021
+// Update Count     : 751
 //
 
@@ -152,5 +152,5 @@
 
 int main( int argc, char const *argv[] ) {
-	#pragma message( "Compiled" )						// force non-empty .expect file
+    #pragma GCC warning "Compiled"                      // force non-empty .expect file, NO TABS!!!
 }
 
Index: tests/include/stdincludes.cfa
===================================================================
--- tests/include/stdincludes.cfa	(revision 12c1eeff7e4358f66eb036d8fd54ae6257c2472c)
+++ tests/include/stdincludes.cfa	(revision 12c1eeff7e4358f66eb036d8fd54ae6257c2472c)
@@ -0,0 +1,56 @@
+// 
+// Cforall Version 1.0.0 Copyright (C) 2017 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+// 
+// stdincludes.cfa -- 
+// 
+// Author           : Peter A. Buhr
+// Created On       : Tue Aug 29 08:26:14 2017
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sat Jun  5 10:08:11 2021
+// Update Count     : 9
+// 
+
+// C11 standard headers
+
+#include <assert.h>
+#include <complex.h>
+#include <ctype.h>
+#include <errno.h>
+#include <fenv.h>
+#include <float.h>
+#include <inttypes.h>
+//#include <iso646.h>										// does not exist on linux
+#include <limits.h>
+#include <locale.h>
+#include <malloc.h>										// extra
+#include <math.h>
+#include <setjmp.h>
+#include <signal.h>
+#include <stdalign.h>
+#include <stdarg.h>
+#include <stdatomic.h>
+#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <stdnoreturn.h>
+#include <string.h>
+#include <tgmath.h>
+#include <time.h>
+#include <uchar.h>
+#include <unistd.h>										// extra
+#include <wchar.h>
+#include <wctype.h>
+
+int main() {
+    #pragma GCC warning "Compiled"                      // force non-empty .expect file, NO TABS!!!
+}
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa stdincludes.cfa" //
+// End: //
