summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.c b/src/util.c
index 1cb98d4..7e77522 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1225,13 +1225,13 @@ lines_differ (char const *s1, char const *s2)
/* Find the consecutive changes at the start of the script START.
Return the last link before the first gap. */
-struct change * _GL_ATTRIBUTE_CONST
+struct change * ATTRIBUTE_CONST
find_change (struct change *start)
{
return start;
}
-struct change * _GL_ATTRIBUTE_CONST
+struct change * ATTRIBUTE_CONST
find_reverse_change (struct change *start)
{
return start;
@@ -1473,7 +1473,7 @@ char const change_letter[] = { 0, 'd', 'a', 'c' };
Internal line numbers count from 0 starting after the prefix.
Actual line numbers count from 1 within the entire file. */
-lin _GL_ATTRIBUTE_PURE
+lin ATTRIBUTE_PURE
translate_line_number (struct file_data const *file, lin i)
{
return i + file->prefix_lines + 1;