Files
metasploit-gs/external/source/byakugan/test/testBufIdent.cpp
T
HD Moore 8dc54f35d3 Merging from the byakugan branch
git-svn-id: file:///home/svn/framework3/trunk@5633 4d416f70-5f16-0410-b530-b9f4589650da
2008-08-20 19:27:03 +00:00

11 lines
146 B
C++
Executable File

#include <stdio.h>
#include <string.h>
int main() {
char ownme[256];
memset(ownme, 'A', 280);
printf("%s\n", ownme);
return (0);
}