From fd6333ed6640fcc23a8f1a92a49cf45e13c96f17 Mon Sep 17 00:00:00 2001 From: elioat <{ID}+{username}@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:01:50 -0500 Subject: * --- html/matt-chat/uswds/img/material-icons/align_vertical_bottom.svg | 1 + 1 file changed, 1 insertion(+) create mode 100644 html/matt-chat/uswds/img/material-icons/align_vertical_bottom.svg (limited to 'html/matt-chat/uswds/img/material-icons/align_vertical_bottom.svg') diff --git a/html/matt-chat/uswds/img/material-icons/align_vertical_bottom.svg b/html/matt-chat/uswds/img/material-icons/align_vertical_bottom.svg new file mode 100644 index 0000000..2f9a4e4 --- /dev/null +++ b/html/matt-chat/uswds/img/material-icons/align_vertical_bottom.svg @@ -0,0 +1 @@ + \ No newline at end of file -- cgit 1.4.1-2-gfad0 ect> This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)ahoang <ahoang@tilde.institute>
summary refs log tree commit diff stats
path: root/tinyc/tests/tests2/64_macro_nesting.c
blob: 676e5d3ef35d974fc19ee230d7b47082aa1201e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>	// printf()

#define CAT2(a,b) a##b
#define CAT(a,b) CAT2(a,b)
#define AB(x) CAT(x,y)

int main(void)
{
  int xy = 42;
  printf("%d\n", CAT(A,B)(x));
  return 0;
}