etc/services - sync with NetBSD-8
[minix.git] / external / bsd / llvm / dist / clang / test / Lexer / digraph.c
blobe940caf44f4b50d7bee70bf44cc155db5d56bf2e
1 // RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s
2 // expected-no-diagnostics
4 %:include <stdint.h>
6 %:ifndef BUFSIZE
7 %:define BUFSIZE 512
8 %:endif
10 void copy(char d<::>, const char s<::>, int len)
12 while (len-- >= 0)
14 d<:len:> = s<:len:>;