Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 5th, 2008 | Syntax: C | Size: 0.14 KB | Hits: 49 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. #include <unistd.h>
  2. int main(int argc, char **argv) {
  3.   int i;
  4.   for (i = 0; i < 1000000; ++i) {
  5.     write(1, "", 0);
  6.   }
  7.   return 0;
  8. }