Rewrite head-of-file comment.

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


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9033 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke
2003-10-10 18:47:08 +00:00
parent 17634f7668
commit 4fa9fd3035

View File

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