Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions sys/src/cmd/6l/l.h
Original file line number Diff line number Diff line change
Expand Up @@ -369,6 +369,7 @@ Prog* brchain(Prog*);
Prog* brloop(Prog*);
void buildop(void);
void cflush(void);
vlong cpos(void);
void ckoff(Sym*, long);
Prog* copyp(Prog*);
Comment on lines +372 to 374

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The function declarations in this header are maintained in alphabetical order. To follow this convention, cpos should be placed after copyp and before cputime (since 'ck' < 'co' < 'cp').

void	ckoff(Sym*, long);
Prog*	copyp(Prog*);
vlong	cpos(void);

double cputime(void);
Expand Down
Loading