Add Emacs and Vi files to gitignore

This commit is contained in:
Jeffrey Walton 2020-02-15 03:50:15 -05:00
parent 36a97733de
commit db97202654
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
2 changed files with 13 additions and 1 deletions

12
.gitignore vendored
View File

@ -38,6 +38,18 @@ a.out
*.o
#################
## Emacs
#################
*~
\#*\#
#################
## Vi swap
#################
*.swp
*.swo
#################
## Eclipse
#################

View File

@ -58,7 +58,7 @@ unsigned long int getauxval(unsigned long int) { return 0; }
#endif
// Visual Studio 2008 and below are missing _xgetbv and _cpuidex.
// See x64dll.asm for the function bodies.
// The 32-bit versions use inline ASM below. The 64-bit versions are in x64dll.asm.
#if defined(_MSC_VER) && defined(_M_X64)
extern "C" unsigned long long __fastcall XGETBV64(unsigned int);
extern "C" unsigned long long __fastcall CPUID64(unsigned int, unsigned int, unsigned int*);