Removed unnecessary setlocale() on Mac
240bad3b66
parent
a9482a1d60
commit
98ce0e50b7
|
@ -29,7 +29,6 @@
|
|||
#include <IOKit/hid/IOHIDKeys.h>
|
||||
#include <CoreFoundation/CoreFoundation.h>
|
||||
#include <wchar.h>
|
||||
#include <locale.h>
|
||||
#include <pthread.h>
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
|
@ -448,8 +447,6 @@ struct hid_device_info HID_API_EXPORT *hid_enumerate(unsigned short vendor_id,
|
|||
CFIndex num_devices;
|
||||
int i;
|
||||
|
||||
setlocale(LC_ALL,"");
|
||||
|
||||
/* Set up the HID Manager if it hasn't been done */
|
||||
if (hid_init() < 0)
|
||||
return NULL;
|
||||
|
@ -1153,8 +1150,6 @@ int main(void)
|
|||
IOHIDDeviceRef *device_array = calloc(num_devices, sizeof(IOHIDDeviceRef));
|
||||
CFSetGetValues(device_set, (const void **) device_array);
|
||||
|
||||
setlocale(LC_ALL, "");
|
||||
|
||||
for (i = 0; i < num_devices; i++) {
|
||||
IOHIDDeviceRef dev = device_array[i];
|
||||
printf("Device: %p\n", dev);
|
||||
|
|
Loading…
Reference in New Issue