Stop using dead __STDC_FORMAT_MACROS macro.

None of our libcs need this any more.

Change-Id: I7b3f5cb911fffe25dc47520570451ecf95a0a696
diff --git a/server/BandwidthController.cpp b/server/BandwidthController.cpp
index 438dbb8..6be5922 100644
--- a/server/BandwidthController.cpp
+++ b/server/BandwidthController.cpp
@@ -25,15 +25,13 @@
 #include <ctype.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <string>
 #include <vector>
 
-#define __STDC_FORMAT_MACROS 1
-#include <inttypes.h>
-
 #include <sys/socket.h>
 #include <sys/stat.h>
 #include <sys/types.h>
diff --git a/server/XfrmController.cpp b/server/XfrmController.cpp
index 1c06b47..e8b83da 100644
--- a/server/XfrmController.cpp
+++ b/server/XfrmController.cpp
@@ -23,13 +23,11 @@
 #include <errno.h>
 #include <fcntl.h>
 #include <getopt.h>
+#include <inttypes.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
-#define __STDC_FORMAT_MACROS
-#include <inttypes.h>
-
 #include <arpa/inet.h>
 #include <net/if.h>
 #include <netinet/in.h>