Daniel Dunbar | c79f767 | 2010-09-07 22:54:28 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -ffreestanding %s |
Chris Lattner | 146ccd4 | 2008-02-24 19:05:57 +0000 | [diff] [blame] | 2 | |
Daniel Dunbar | 23afaad | 2009-11-17 08:57:36 +0000 | [diff] [blame] | 3 | %:include <stdint.h> |
Chris Lattner | 146ccd4 | 2008-02-24 19:05:57 +0000 | [diff] [blame] | 4 | |
5 | %:ifndef BUFSIZE | ||||
6 | %:define BUFSIZE 512 | ||||
7 | %:endif | ||||
8 | |||||
9 | void copy(char d<::>, const char s<::>, int len) | ||||
10 | <% | ||||
11 | while (len-- >= 0) | ||||
12 | <% | ||||
13 | d<:len:> = s<:len:>; | ||||
14 | %> | ||||
15 | %> |