mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
Reorganize includes
This commit is contained in:
parent
729fdf7d91
commit
416417a54c
50 changed files with 146 additions and 154 deletions
|
@ -1,10 +1,13 @@
|
|||
#include <math.h>
|
||||
#include <stdint.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <wlc/wlc.h>
|
||||
#include <xkbcommon/xkbcommon-names.h>
|
||||
#include "log.h"
|
||||
#include "readline.h"
|
||||
#include "util.h"
|
||||
#include "log.h"
|
||||
|
||||
int wrap(int i, int max) {
|
||||
return ((i % max) + max) % max;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue