aboutsummaryrefslogtreecommitdiff
path: root/epoch.h
diff options
context:
space:
mode:
Diffstat (limited to 'epoch.h')
-rw-r--r--epoch.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/epoch.h b/epoch.h
deleted file mode 100644
index 375600906..000000000
--- a/epoch.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef EPOCH_H
-#define EPOCH_H
-
-
-// return codes for emitter_func
-#define STOP 0
-#define CONTINUE 1
-#define DO 2
-typedef int (*emitter_func) (struct commit *);
-
-int sort_list_in_merge_order(struct commit_list *list, emitter_func emitter);
-
-/* Low bits are used by rev-list */
-#define BOUNDARY (1u<<11)
-#define VISITED (1u<<12)
-#define DISCONTINUITY (1u<<13)
-#define LAST_EPOCH_FLAG (1u<<14)
-
-
-#endif /* EPOCH_H */