Index: uspace/lib/c/arch/sparc64/include/inttypes.h
===================================================================
--- uspace/lib/c/arch/sparc64/include/inttypes.h	(revision dc0b96419120ee5e704d73292cca782d65f45781)
+++ uspace/lib/c/arch/sparc64/include/inttypes.h	(revision 0b0f4bbb6bb3dcf1707e2828a5a9b5be7c307af4)
@@ -30,20 +30,12 @@
  * @{
  */
-/** @file Macros for format specifiers.
- *
- * Macros for formatting stdint types as specified in section
- * 7.8.1 Macros for format specifiers of the C99 draft specification
- * (ISO/IEC 9899:201x). Only some macros from the specification are
- * implemented.
- */
 
 #ifndef LIBC_sparc64_INTTYPES_H_
 #define LIBC_sparc64_INTTYPES_H_
 
-#define PRIdPTR  PRId64
-#define PRIoPTR  PRIo64
-#define PRIuPTR  PRIu64
-#define PRIxPTR  PRIx64
-#define PRIXPTR  PRIX64
+#define PRIdn  PRId64  /**< Format for sysarg_t, ipcarg_t, etc. */
+#define PRIun  PRIu64  /**< Format for sysarg_t, ipcarg_t, etc. */
+#define PRIxn  PRIx64  /**< Format for hexadecimal sysarg_t, ipcarg_t, etc. */
+#define PRIua  PRIu64  /**< Format for atomic_count_t. */
 
 #endif
