- Download & Install Sublime Text 3.2.2 Build 3211
- Visit https://hexed.it/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright (c) 2010-2014 Christopher Swenson. */ | |
/* Copyright (c) 2012 Google Inc. All Rights Reserved. */ | |
#define _XOPEN_SOURCE | |
#include <sys/time.h> | |
#define SORT_NAME sorter | |
#define SORT_TYPE int64_t | |
#define SORT_CMP(x, y) ((x) - (y)) | |
#include "sort.h" |