Rewrite head-of-file comment.

Include <cstdio> instead of <stdio.h>.

llvm-svn: 9033
This commit is contained in:
Brian Gaeke 2003-10-10 18:47:08 +00:00
parent b8a4ed6543
commit 81d153e37f
1 changed files with 4 additions and 7 deletions

View File

@ -1,26 +1,23 @@
//===----------------------------------------------------------------------===//
// LLVM 'ar' UTILITY
//===-- tools/llvm-ar/llvm-ar.cpp - LLVM archive librarian utility --------===//
//
// This utility may be invoked in the following manner:
// llvm-ar archivename files..
// Builds up standard unix archive files (.a) containing LLVM bytecode.
//
//===----------------------------------------------------------------------===//
#include "Support/CommandLine.h"
#include "llvm/Bytecode/Reader.h"
#include "llvm/Module.h"
#include <string>
#include <iostream>
#include <fstream>
#include <vector>
#include <sys/stat.h>
#include <stdio.h>
#include <cstdio>
#include <sys/types.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/mman.h>
using std::string;
using std::vector;
using std::cout;