X-Git-Url: https://git.saurik.com/apple/security.git/blobdiff_plain/80e2389990082500d76eb566d4946be3e786c3ef..d8f41ccd20de16f8ebe2ccc84d47bf1cb2b26bbb:/utilities/src/SecIOFormat.h diff --git a/utilities/src/SecIOFormat.h b/utilities/src/SecIOFormat.h deleted file mode 100644 index f5933077..00000000 --- a/utilities/src/SecIOFormat.h +++ /dev/null @@ -1,50 +0,0 @@ -// -// SecIOFormat.h -// utilities -// -// Created by Mitch Adler on 10/1/12. -// Copyright (c) 2012 Apple Inc. All rights reserved. -// - -#ifndef _SECIOFORMAT_H_ -#define _SECIOFORMAT_H_ - -#include - -// MARK: CFIndex printing support - -#ifdef __LLP64__ -# define PRIdCFIndex "lld" -# define PRIiCFIndex "lli" -# define PRIoCFIndex "llo" -# define PRIuCFIndex "llu" -# define PRIxCFIndex "llx" -# define PRIXCFIndex "llX" -#else -# define PRIdCFIndex "ld" -# define PRIiCFIndex "li" -# define PRIoCFIndex "lo" -# define PRIuCFIndex "lu" -# define PRIxCFIndex "lx" -# define PRIXCFIndex "lX" -#endif - -// MARK: OSStatus printing support - -#ifdef __LP64__ -# define PRIdOSStatus "d" -# define PRIiOSStatus "i" -# define PRIoOSStatus "o" -# define PRIuOSStatus "u" -# define PRIxOSStatus "x" -# define PRIXOSStatus "X" -#else -# define PRIdOSStatus "ld" -# define PRIiOSStatus "li" -# define PRIoOSStatus "lo" -# define PRIuOSStatus "lu" -# define PRIxOSStatus "lx" -# define PRIXOSStatus "lX" -#endif - -#endif