about summary refs log tree commit diff
path: root/ui-repolist.c
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-12-23 12:47:55 +0100
committerLars Hjemli <hjemli@gmail.com>2011-02-19 14:41:39 +0100
commite52040bf90b034aebbfa32756638a24d6b1b3712 (patch)
treeba2db3037cb486fb40a8c85a62b5a393d5035924 /ui-repolist.c
parentimplement repo.logo and repo.logo-link (diff)
downloadcgit-pink-e52040bf90b034aebbfa32756638a24d6b1b3712.tar.gz
cgit-pink-e52040bf90b034aebbfa32756638a24d6b1b3712.zip
ssdiff: anchors for ssdiff
Emit anchors to the respective revisions in side-by-side diff view

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
/td>include/compat/sys/ioctl.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/compat/sys/ioctl.h b/include/compat/sys/ioctl.h
new file mode 100644
index 0000000..a255506
--- /dev/null
+++ b/include/compat/sys/ioctl.h
@@ -0,0 +1,11 @@
+/*
+ * Public domain
+ * sys/ioctl.h compatibility shim
+ */
+
+#ifndef _WIN32
+#include_next <sys/ioctl.h>
+#else
+#include <win32netcompat.h>
+#define ioctl(fd, type, arg) ioctlsocket(fd, type, arg)
+#endif