2009-03-24 10:24:46 +08:00
|
|
|
// RUN: clang-cc -fsyntax-only -verify < %s
|
2008-02-25 03:05:57 +08:00
|
|
|
|
|
|
|
%:include <stdio.h>
|
|
|
|
|
|
|
|
%:ifndef BUFSIZE
|
|
|
|
%:define BUFSIZE 512
|
|
|
|
%:endif
|
|
|
|
|
|
|
|
void copy(char d<::>, const char s<::>, int len)
|
|
|
|
<%
|
|
|
|
while (len-- >= 0)
|
|
|
|
<%
|
|
|
|
d<:len:> = s<:len:>;
|
|
|
|
%>
|
|
|
|
%>
|